POST CancelCheck
Request Information
URI Parameters
None.
Body Parameters
CancelCheckRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| Cs | ClientSecurity |
None. |
|
| BranchId | integer |
None. |
|
| Terminal | string |
None. |
|
| CheckGuidForDelete | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Cs": {
"UserName": "sample string 1",
"Pass": "sample string 2",
"CompanyKey": "sample string 3"
},
"BranchId": 1,
"Terminal": "sample string 2",
"CheckGuidForDelete": "sample string 3"
}
application/xml, text/xml
Sample:
<CancelCheckRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Loyalty.Dto.Integration.External">
<BranchId>1</BranchId>
<CheckGuidForDelete>sample string 3</CheckGuidForDelete>
<Cs>
<CompanyKey>sample string 3</CompanyKey>
<Pass>sample string 2</Pass>
<UserName>sample string 1</UserName>
</Cs>
<Terminal>sample string 2</Terminal>
</CancelCheckRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
CancelCheckResult| Name | Description | Type | Additional information |
|---|---|---|---|
| Result | ServiceResult |
None. |
|
| ResultMessage | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Result": 0,
"ResultMessage": "sample string 1"
}
application/xml, text/xml
Sample:
<CancelCheckResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Loyalty.Dto.Integration.External"> <Result>Success</Result> <ResultMessage>sample string 1</ResultMessage> </CancelCheckResult>