Genesys CTI User Forum
Genesys CTI User Forum => Genesys-related Development => Topic started by: newsG on March 30, 2022, 10:49:49 AM
-
Hello,
Does anyone know how to set agent status to Not Ready with displayName as parameter only accepts for operationName?
URL: /api/v2/users/{userId}/channels/{channelId}
Parameter: operationName
For example,
{
"operationName": "NotReady"
}
-
Try this as the payload:
[code]
{
"operationName": "NotReady",
"reasons": "<your reason code>"
}
[/code]
-
Bad luck. I can use like this but it applies only to voice channels but not to other media.
{
"operationName": "<my reason code>"
}