The GET /users/{userId}/schedules
endpoint gets a list of all schedules for the user matching the user ID provided.
...
Type | Required | Example |
---|---|---|
integer | False | 25 |
The required number of items per page. Minimum of 1. Maximum of 5000. Default is 25.
page
Type | Required | Example |
---|---|---|
integer | False | 1 |
The required page. Minimum of 1, maximum of 1000000000. Default is 1.
Requests
Request user's linked schedules
Code Block | ||||
---|---|---|---|---|
| ||||
curl -L -X GET "https://***.api.newvoicemedia.com/useradmin/users/8e22b1fe-d2ea-403d-8c03-50eb21188e79/schedules" \ -H "Accept: application/vnd.newvoicemedia.v4+json" \ -H "Authorization: Bearer <ACCESS_TOKEN>" |
Responses
Responses contain a list of all schedules for the user matching the user ID provided.
Successful response
Successful requests return a 200 Success
code and a collection of schedules.
Example response
Code Block | ||||
---|---|---|---|---|
| ||||
{ "meta": { "page": 1, "count": 2, "pageCount": 1, "totalCount": 2 }, "userId": "d5b92547-5089-42ff-9e08-9293e96afcc0", "agentDisplayId": "23456789", "agentSchedules": [ { "scheduleId": "d89e85d1-3452-4a80-913f-39de32fd864d", "scheduleName": "Schedule1" }, { "scheduleId": "43e5fd40-b802-4001-9ec2-9f2393bb34a5", "scheduleName": "Schedule2" } ] } |
where:
userId
. The unique ID of the user.agentDisplayId
. The agent's display ID.agentSchedules
. The schedules assigned to the agent.scheduleId
. The unique ID of the schedule.scheduleName
. The name of the schedule.