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:
{
  "ResultType": 1,
  "ResultMessage": "sample string 2",
  "Code": 3,
  "Message": "sample string 4"
}

application/xml, text/xml

Sample:
<BaseCardAppApiResponseResultType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CardAppIoTCommon.Model.Base">
  <Code>3</Code>
  <Message>sample string 4</Message>
  <ResultMessage>sample string 2</ResultMessage>
  <ResultType>1</ResultType>
</BaseCardAppApiResponseResultType>