GET api/Chat?messageId={messageId}
Get a previous chat message to append to.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
messageId | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Dezrez.Core.DataContracts.External.Api.Chat.Query.Get.ChatMessageDataContractName | Description | Type | Additional information |
---|---|---|---|
Id | string |
None. |
|
DateTimeCreated | date |
None. |
|
MessageStatus | string |
None. |
|
NegotiatorId | integer |
None. |
|
NegotiatorName | string |
None. |
|
Comments | Collection of Dezrez.Core.DataContracts.External.Api.Chat.ChatMessageCommentDataContract |
None. |
|
Recipients | Collection of Dezrez.Core.DataContracts.External.Api.Chat.ChatMessageUserDataContract |
None. |
Response Formats
application/json, text/json
Sample:
{ "Id": "sample string 1", "DateTimeCreated": "2024-11-21T09:51:27.7854621Z", "MessageStatus": "sample string 3", "NegotiatorId": 4, "NegotiatorName": "sample string 5", "Comments": [ { "ChatMessageUser": { "UserId": 1, "UserName": "sample string 2" }, "Comment": "sample string 1", "DateTime": "2024-11-21T09:51:27.7854621Z" }, { "ChatMessageUser": { "UserId": 1, "UserName": "sample string 2" }, "Comment": "sample string 1", "DateTime": "2024-11-21T09:51:27.7854621Z" } ], "Recipients": [ { "UserId": 1, "UserName": "sample string 2" }, { "UserId": 1, "UserName": "sample string 2" } ] }