This page was last edited on October 31, 2023, at 13:28.
Comments or questions about this documentation? Contact us for support!
This is part of the Customer Chat API section of the Web Services API.
The chat resource can be retrieved by periodically sending a GET request to /api/v2/chats/{id} as described in the GetChat operation.
The state property of the chat resource can have one of the following values:
The capabilities property of the chat resource provides an array of operation names that are valid for the current state of the chat.
The participants property will include details of all known chat participants.
{ "chat" : { "capabilities" : [ "SendMessage", "SendStartTypingNotification", "SendStopTypingNotification", "Complete" ], "id" : "652492d9-c2d9-44c9-b9ad-0ab7984114bb", "participants" : [ { "nickname" : "Chris", "participantId" : "1", "type" : "Customer" } ], "state" : "WaitingForAgent" }, "statusCode" : 0 }
{ "chat" : { "capabilities" : [ "SendMessage", "SendStartTypingNotification", "SendStopTypingNotification", "Complete" ], "id" : "652492d9-c2d9-44c9-b9ad-0ab7984114bb", "participants" : [ { "nickname" : "Kristi Sippola", "participantId" : "2", "type" : "Agent" }, { "nickname" : "Chris", "participantId" : "1", "type" : "Customer" } ], "state" : "Chatting" }, "statusCode" : 0 }