POST api/ATAExpress/Verify

Request Information

URI Parameters

None.

Body Parameters

VerifyRequest
NameDescriptionTypeAdditional 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
NameDescriptionTypeAdditional information
ResponseResult

ResponseResult

None.

Response

VerifyDataResponse

None.

Response Formats

application/json, text/json

Sample:
{
  "ResponseResult": {
    "Result": true,
    "ExceptionDetail": "sample string 2"
  },
  "Response": {
    "CrmId": "68204287-f433-449b-a0c1-92ec52b1b30b",
    "FullName": "sample string 2",
    "Phone": "sample string 3",
    "TransactionId": "sample string 4",
    "AtxReference": "986c2030-ffaa-410f-bbe5-f767323ea62c"
  }
}

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>986c2030-ffaa-410f-bbe5-f767323ea62c</AtxReference>
    <CrmId>68204287-f433-449b-a0c1-92ec52b1b30b</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>