GET api_v2/AccountUsers/Find?searchString={searchString}&accountId={accountId}&maxRecordsCount={maxRecordsCount}
Поиск пользователей облака по фильтру
Request Information
Parameters
Name | Description | Additional information |
---|---|---|
searchString | Строка поиска |
Define this parameter in the request URI. |
accountId | Идентификатор аккаунта |
Define this parameter in the request URI. |
maxRecordsCount | Максимальное количество записей |
Define this parameter in the request URI. |
Response Information
Пользователи облака
Response body formats
application/xml, text/xml
Sample:
<Result> <AccountSearchResultTable Type="sample string 1"> <Row> <AccountUserId>c51b34fb-72f8-49c8-9ba9-de631cc4fdbf</AccountUserId> <AccountUserName>sample string 2</AccountUserName> <Email>sample string 3</Email> </Row> <Row> <AccountUserId>c51b34fb-72f8-49c8-9ba9-de631cc4fdbf</AccountUserId> <AccountUserName>sample string 2</AccountUserName> <Email>sample string 3</Email> </Row> <Row> <AccountUserId>c51b34fb-72f8-49c8-9ba9-de631cc4fdbf</AccountUserId> <AccountUserName>sample string 2</AccountUserName> <Email>sample string 3</Email> </Row> </AccountSearchResultTable> </Result>
application/json, text/json
Sample:
{ "AccountSearchResultTable": { "Rows": [ { "Id": "c51b34fb-72f8-49c8-9ba9-de631cc4fdbf", "AccountUserName": "sample string 2", "Email": "sample string 3" }, { "Id": "c51b34fb-72f8-49c8-9ba9-de631cc4fdbf", "AccountUserName": "sample string 2", "Email": "sample string 3" }, { "Id": "c51b34fb-72f8-49c8-9ba9-de631cc4fdbf", "AccountUserName": "sample string 2", "Email": "sample string 3" } ] } }