This page was last edited on December 10, 2013, at 14:49.
Comments or questions about this documentation? Contact us for support!
Use the following requests to set Agent States across all channels.
Sets all of an agent's channel statuses to "Ready", meaning that the agent is ready to receive interaction invitations for all the agent's media channels.
POST on /me
{ "operationName":"Ready" }
Success
{ "status":"ok" }
Failure
{ "status":"error", "errorDescription":details }
Sets all of an agent's channel statuses to "NotReady", meaning that the agent is not ready to receive interaction invitations for any of the agent's media channels.
POST on /me
{ "operationName":"NotReady" }
Success
{ "status":"ok" }
Failure
{ "status":"error", "errorDescription":details }
Activates the "Do Not Disturb" status. This applies to all devices and channels, and overrides statuses such as "Ready."
POST on /me
{ "operationName":"DoNotDisturbOn" }
Success
{ "status":"ok" }
See Cometd Notifications.
Failure
{ "status":"error", "errorDescription":details }
Deactivates the "Do Not Disturb" status. This applies to all devices and channels, and overrides statuses such as "Ready."
POST on /me
{ "operationName":"DoNotDisturbOff" }
Success
{ "status":"ok" }
See Cometd Notifications.
Failure
{ "status":"error", "errorDescription":details }