GET api/v1/support/ticket/{panelistId}/history
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| panelistId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
TicketHistoryResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Tickets | Collection of TicketHistory |
None. |
Response Formats
application/json, text/json
Sample:
{
"tickets": [
{
"id": 1,
"title": "sample string 2",
"status": 1,
"description": "sample string 3",
"updatedDate": "2025-10-31T06:31:07.7506173-04:00",
"attachmentType": "sample string 5",
"attachment": "sample string 6"
},
{
"id": 1,
"title": "sample string 2",
"status": 1,
"description": "sample string 3",
"updatedDate": "2025-10-31T06:31:07.7506173-04:00",
"attachmentType": "sample string 5",
"attachment": "sample string 6"
}
]
}
text/xml
Sample:
<TicketHistoryResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PMSBL.Entity">
<Tickets>
<TicketHistory>
<Attachment>sample string 6</Attachment>
<AttachmentType>sample string 5</AttachmentType>
<Description>sample string 3</Description>
<Id>1</Id>
<Status>Open</Status>
<Title>sample string 2</Title>
<UpdatedDate>2025-10-31T06:31:07.7506173-04:00</UpdatedDate>
</TicketHistory>
<TicketHistory>
<Attachment>sample string 6</Attachment>
<AttachmentType>sample string 5</AttachmentType>
<Description>sample string 3</Description>
<Id>1</Id>
<Status>Open</Status>
<Title>sample string 2</Title>
<UpdatedDate>2025-10-31T06:31:07.7506173-04:00</UpdatedDate>
</TicketHistory>
</Tickets>
</TicketHistoryResponse>