This page was last edited on July 15, 2013, at 11:59.
Comments or questions about this documentation? Contact us for support!
Use the following 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 will not 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 }