POST api/ESSystem/v1/CounterOperations/apply
Request Information
URI Parameters
None.
Body Parameters
CounterOperationsApplyModel| Name | Description | Type | Additional information |
|---|---|---|---|
| CounterGuid | globally unique identifier |
None. |
|
| NewStatusId | integer |
None. |
|
| Notes | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"CounterGuid": "d7339136-78a5-4eb3-9363-9c7f533f9cbe",
"NewStatusId": 2,
"Notes": "sample string 3"
}
application/xml, text/xml
Sample:
<CounterOperationsApplyModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Models"> <CounterGuid>d7339136-78a5-4eb3-9363-9c7f533f9cbe</CounterGuid> <NewStatusId>2</NewStatusId> <Notes>sample string 3</Notes> </CounterOperationsApplyModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ApiResult| Name | Description | Type | Additional information |
|---|---|---|---|
| Error | integer |
None. |
|
| Message | string |
None. |
|
| Data | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"Error": 1,
"Message": "sample string 2",
"Data": {}
}
application/xml, text/xml
Sample:
<ApiResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Core.Common"> <Data /> <Error>1</Error> <Message>sample string 2</Message> </ApiResult>