Look up users
Get an array of users.
| Method | GET
|
| URL | /v1/user/{siteId}/filteredList
|
Request parameters
|
Parameter |
Type |
Description |
Required |
Default value |
|---|---|---|---|---|
|
|
string |
Filter by an agent group ID. |
no |
|
|
|
string |
Filter by a business unit ID. |
no |
|
|
|
integer |
Return a list of users based on |
no |
|
|
|
integer |
Return a list of users based on |
no |
|
|
|
integer |
Maximum number of records in response. Maximum value: 1000. |
no |
|
|
|
Boolean |
Returns a list of users whose |
no |
|
|
|
integer |
Number of skipped records from the start. For example a combination of the |
no |
|
|
|
string |
Order of records in result list. Supported values are:
|
no |
|
|
|
string |
Filter by a role. |
no |
|
|
|
integer |
Site ID. Unique identifier assigned during client-account creation in Nuance Portal. |
yes |
|
|
|
string |
Field name for sorting. Supported values are:
|
no |
|
|
|
string |
Comma-separated list of usernames. If provided, the query returns the users associated with the supplied usernames. |
no |
|
Response codes
|
Status |
Description |
|---|---|
|
200 |
Request succeeded, and the response has content, which contains a list of users. This list is an array of objects with the following properties:
The respose object is described in the PaginatedUser model. |
|
204 |
Request succeeded, and there is no content to send in the response. |
For a full list of supported response codes for UMAPI, see Response codes.
Samples
Note: Authentication is required to try out samples. For details, see API token authentication.
url /portal/configuration/api/v1/user/123/filteredList?usernames=aa005s&offset=0&max=10
{"offset": 0,
"max": 10,
"sort": "username",
"order": "ASC",
"total": 1,
"records": [
{"id": 1234567,
"username": "aa005s",
"version": 2
}
]
}