POST api/v1/support/ticket
Request Information
URI Parameters
None.
Body Parameters
TicketRequestName | Description | Type | Additional information |
---|---|---|---|
PanelistId | integer |
None. |
|
Category | TicketCategory |
None. |
|
Title | string |
None. |
|
Discription | string |
None. |
|
Attachment | string |
None. |
|
AttachmentType | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "panelistId": 1, "category": 0, "title": "sample string 2", "discription": "sample string 3", "attachment": "sample string 4", "attachmentType": "sample string 5" }
text/xml
Sample:
<TicketRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PMSBL.Entity"> <Attachment>sample string 4</Attachment> <AttachmentType>sample string 5</AttachmentType> <Category>None</Category> <Discription>sample string 3</Discription> <PanelistId>1</PanelistId> <Title>sample string 2</Title> </TicketRequest>
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>