GET api/chat/unreadsummary
Get a count of unread chat messages for the negotiator plus a list of corresponding message id's which are unread. Processes this chat API request. The parameter and response sections describe the data exchanged with the API.
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
ChatUnreadMessagesResponseDataContract
ChatUnreadMessagesResponseDataContract| Name | Description | Type | Additional information |
|---|---|---|---|
| Count |
The count value. |
integer |
None. |
| Messages |
The collection of messages. |
Dictionary of string [key] and date [value] |
None. |
Response Formats
application/json, text/json
Sample:
{
"Count": 1,
"Messages": {
"sample string 1": "2026-07-23T08:14:14.4028158Z",
"sample string 3": "2026-07-23T08:14:14.4028158Z"
}
}