This page was last edited on October 31, 2023, at 13:29.
Comments or questions about this documentation? Contact us for support!
This is part of the API Basics section of the Web Services API.
This section provides additional details on the filtering functionality described in Pagination and Subresources.
The request accepts comma-delimited list of fields as a sortBy parameter.
This allows an API user to specify multiple sorting fields so that sorting is done by the first field specified, then by the second field specified, and so on.
Here is the sample request which returns users sorted by voice channel state and inside users with same state sorted by lastName.
GET ...api/v2/users?subresources=statistics&limit=100&sortBy=statistics.channels.voice.state,lastName
The list of user properties which can be used for filtering:
The list of subresources fields what can be used for filtering:
Subresource | Description |
---|---|
devices.phoneNumber | Search for user which has assigned device with provided phone number. Please note that server stores for search purposes phone numbers in fixed format which contains digits only, thus value should not contain any non-digits. |
skills.name | Search for user(s) which have an assigned skill with the name provided. |
skills.level | Search for users(s) which have assigned skills with provided skillLevel. |
statistics.channels.voice.state | Search for users with specified voice channel states.
|
statistics.channels.voice.displayNameSearch | for users with specified voice channel display names.
|
statistics.channels.voice.activity | Search for users with specified voice channel activites.
|
statistics.channels.voice.workMode | Search for users with specified voice channel workModes.
|
Here is the list of available sort fields:
The statistics.<statisticName>.value is the value of simple statistic with name <statisticName> as defined in statistics.yaml.