POST api/ATAExpress/Verify
Request Information
URI Parameters
None.
Body Parameters
VerifyRequestName | 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
VerifyResponseName | 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": "b5dbad37-3627-48cb-aaba-1fc0ba91cfd9", "FullName": "sample string 2", "Phone": "sample string 3", "TransactionId": "sample string 4", "AtxReference": "502ee181-c403-4724-8a9d-7f393f7dda4b" } }
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>502ee181-c403-4724-8a9d-7f393f7dda4b</AtxReference> <CrmId>b5dbad37-3627-48cb-aaba-1fc0ba91cfd9</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>