POST api/v1/support/ticket/message
Request Information
URI Parameters
None.
Body Parameters
TicketMessageRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| TicketId | integer |
None. |
|
| Message | string |
None. |
|
| UserId | integer |
None. |
|
| IsAdmin | boolean |
None. |
|
| AttachmentType | string |
None. |
|
| Attachment | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"ticketId": 1,
"message": "sample string 2",
"userId": 3,
"isAdmin": true,
"attachmentType": "sample string 5",
"attachment": "sample string 6"
}
text/xml
Sample:
<TicketMessageRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PMSBL.Entity"> <Attachment>sample string 6</Attachment> <AttachmentType>sample string 5</AttachmentType> <IsAdmin>true</IsAdmin> <Message>sample string 2</Message> <TicketId>1</TicketId> <UserId>3</UserId> </TicketMessageRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpStatusCodeResponse Formats
application/json, text/json
Sample:
100
text/xml
Sample:
<HttpStatusCode xmlns="http://schemas.datacontract.org/2004/07/System.Net">Continue</HttpStatusCode>