POST api/ATAExpress/Verify
Request Information
URI Parameters
None.
Body Parameters
VerifyRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| QRCode | string |
None. |
|
| TransactionNo | string |
None. |
|
| BonusAmount | decimal number |
None. |
|
| WalletAmount | decimal number |
None. |
Request Formats
application/json, text/json
Sample:
{
"QRCode": "sample string 1",
"TransactionNo": "sample string 2",
"BonusAmount": 3.1,
"WalletAmount": 4.1
}
application/xml, text/xml
Sample:
<VerifyRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TabPromo.TabletPos.Web.Service.Models.Api.ATAExpress.Verify.Request"> <BonusAmount>3.1</BonusAmount> <QRCode>sample string 1</QRCode> <TransactionNo>sample string 2</TransactionNo> <WalletAmount>4.1</WalletAmount> </VerifyRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
VerifyResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| ResponseResult | ResponseResult |
None. |
|
| Response | VerifyDataResponse |
None. |
Response Formats
application/json, text/json
Sample:
{
"ResponseResult": {
"Result": true,
"ExceptionDetail": "sample string 2"
},
"Response": {
"CrmId": "75df5bbd-ae0c-48f6-b682-f19285c80d10",
"FullName": "sample string 2",
"Phone": "sample string 3",
"TransactionId": "sample string 4",
"AtxReference": "dca84a62-af93-474b-b47c-c16e7600785e"
}
}
application/xml, text/xml
Sample:
<VerifyResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TabPromo.TabletPos.Web.Service.Models.Api.ATAExpress.Verify.Response">
<Response>
<AtxReference>dca84a62-af93-474b-b47c-c16e7600785e</AtxReference>
<CrmId>75df5bbd-ae0c-48f6-b682-f19285c80d10</CrmId>
<FullName>sample string 2</FullName>
<Phone>sample string 3</Phone>
<TransactionId>sample string 4</TransactionId>
</Response>
<ResponseResult xmlns:d2p1="http://schemas.datacontract.org/2004/07/TabPromo.TabletPos.Web.Service.Models.Api">
<d2p1:ExceptionDetail>sample string 2</d2p1:ExceptionDetail>
<d2p1:Result>true</d2p1:Result>
</ResponseResult>
</VerifyResponse>