POST cardapp/V4/Verify

Documentation for 'Verify'.

Request Information

Parameters

NameDescriptionAdditional information
request
Documentation for 'request'.

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "QrCode": "sample string 1",
  "Mac": "sample string 2",
  "Language": 3
}

application/xml, text/xml

Sample:
<VerifyRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BasicModel.Third.CardAppV4">
  <Language xmlns="http://schemas.datacontract.org/2004/07/CardAppIoTCommon.Model.Base">3</Language>
  <Mac>sample string 2</Mac>
  <QrCode>sample string 1</QrCode>
</VerifyRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "CardNo": "sample string 1",
  "BusinessCode": "sample string 2",
  "ResultType": 3,
  "ResultMessage": "sample string 4",
  "Code": 5,
  "Message": "sample string 6"
}

application/xml, text/xml

Sample:
<VerifyResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BasicModel.Third.CardAppV4">
  <Code xmlns="http://schemas.datacontract.org/2004/07/CardAppIoTCommon.Model.Base">5</Code>
  <Message xmlns="http://schemas.datacontract.org/2004/07/CardAppIoTCommon.Model.Base">sample string 6</Message>
  <ResultMessage xmlns="http://schemas.datacontract.org/2004/07/CardAppIoTCommon.Model.Base">sample string 4</ResultMessage>
  <ResultType xmlns="http://schemas.datacontract.org/2004/07/CardAppIoTCommon.Model.Base">3</ResultType>
  <BusinessCode>sample string 2</BusinessCode>
  <CardNo>sample string 1</CardNo>
</VerifyResponse>