POST icss/api/v1/ticket/createreply
Request Information
URI Parameters
None.
Body Parameters
TicketReplyViewModelName | Description | Type | Additional information |
---|---|---|---|
TicketId | integer |
None. |
|
UserId | integer |
None. |
|
Message | string |
None. |
|
IsNotice | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{ "TicketId": 1, "UserId": 2, "Message": "sample string 3", "IsNotice": true }
application/xml, text/xml
Sample:
<TicketReplyViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ICSSQuickService.WebApi.Models"> <IsNotice>true</IsNotice> <Message>sample string 3</Message> <TicketId>1</TicketId> <UserId>2</UserId> </TicketReplyViewModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.