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