GET api/Chat?messageId={messageId}

Get a previous chat message to append to.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
messageId

string

Required

Body Parameters

None.

Response Information

Resource Description

Dezrez.Core.DataContracts.External.Api.Chat.Query.Get.ChatMessageDataContract
NameDescriptionTypeAdditional 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-03-29T15:16:28.8183889Z",
  "MessageStatus": "sample string 3",
  "NegotiatorId": 4,
  "NegotiatorName": "sample string 5",
  "Comments": [
    {
      "ChatMessageUser": {
        "UserId": 1,
        "UserName": "sample string 2"
      },
      "Comment": "sample string 1",
      "DateTime": "2024-03-29T15:16:28.8183889Z"
    },
    {
      "ChatMessageUser": {
        "UserId": 1,
        "UserName": "sample string 2"
      },
      "Comment": "sample string 1",
      "DateTime": "2024-03-29T15:16:28.8183889Z"
    }
  ],
  "Recipients": [
    {
      "UserId": 1,
      "UserName": "sample string 2"
    },
    {
      "UserId": 1,
      "UserName": "sample string 2"
    }
  ]
}