GET api/v1/support/ticket/{ticketId}/message

Request Information

URI Parameters

NameDescriptionTypeAdditional information
ticketId

integer

Required

Body Parameters

None.

Response Information

Resource Description

TicketMessageResponse
NameDescriptionTypeAdditional information
Messages

Collection of TicketMsg

None.

Response Formats

application/json, text/json

Sample:
{
  "messages": [
    {
      "message": "sample string 1",
      "isPanelist": true,
      "updatedDate": "2025-01-21T23:33:09.5666556-05:00",
      "attachmentType": "sample string 4",
      "attachment": "sample string 5"
    },
    {
      "message": "sample string 1",
      "isPanelist": true,
      "updatedDate": "2025-01-21T23:33:09.5666556-05:00",
      "attachmentType": "sample string 4",
      "attachment": "sample string 5"
    }
  ]
}

text/xml

Sample:
<TicketMessageResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PMSBL.Entity">
  <Messages>
    <TicketMsg>
      <Attachment>sample string 5</Attachment>
      <AttachmentType>sample string 4</AttachmentType>
      <IsPanelist>true</IsPanelist>
      <Message>sample string 1</Message>
      <UpdatedDate>2025-01-21T23:33:09.5666556-05:00</UpdatedDate>
    </TicketMsg>
    <TicketMsg>
      <Attachment>sample string 5</Attachment>
      <AttachmentType>sample string 4</AttachmentType>
      <IsPanelist>true</IsPanelist>
      <Message>sample string 1</Message>
      <UpdatedDate>2025-01-21T23:33:09.5666556-05:00</UpdatedDate>
    </TicketMsg>
  </Messages>
</TicketMessageResponse>