Card Verification
Initiates a card verification transaction, authenticating the card and related authentication data submitted with the card (such as EMV data).
The API consumer must have a valid OAuth 2.0 access token with the client credentials grant type to invoke this API.
Endpoint
Sample Request |
---|
POST /{{baseUrl}}/verification/card |
Authorization
Headers |
---|
Authorization = Bearer Token |
Sample Request
Content-Type: application/json; HTTP Method: POST
{
"card": {
"pan": "822499583036",
"sequenceNumber": "198",
"expiryMonth": "02",
"expiryYear": "1977",
"securityCode": "7762",
"holder": "<string>",
"accountType": "<string>",
"track1": "<string>",
"track2": "<string>",
"iccRelatedData": "E5Aff9E1b60De45f5017d4Bfb03dFBb6Fa6dC7cfA4906f42eB015F80f6438834b1bfc261fd6CDaF15DFca6B0ecec3EB3aBf9db49077B3d78aff76EF4ADEeCAd34a3D06EB1A8E5A66a4e936e4a09a4d7dcDcbF098b12fC8bEaE3d0b09989720f9DcEDcEaAa833D7e5f8A8a9C3e6FFeA13AF215b80DeEE05ba1DeafBe66Ee9Fda2b6B9A80dAbccb576c3781c06B5e140Df7AA3CcFfBBE4F1efEb707416C8D5B16Ee1D0bDA08cBBB0ecFfCfCd5FAaFEdeCc1e45de3BcA4139bD72EDd1564Efe2010aBCC66aAebE78f9F94Fd4cEF94DEDdbD050ABb316Dd419599edb71Aae91E1Aa46eB0EFC723d1cE352D9d6DeE6d0B2EBbB2C869DdDE458eBbf0F53ccfEA0fD2C57D3DA87c7ACAabB4801b20ff1E8146EBD1DffBacfa1e65009Ac3C955bad6a4C135A44572CdeBaDaD462e0c9Cce935eFe0091F1e4FbAdDAEe8BE1FA04A781Ca6EF520d0130a1E130bE7Fa1a09CF7F506ECeDC5fEcaF3E5bA17FeAb9a7db37A7829edCDAFEff031a15393fc2Cc7eA2fB6f3399dDCf8215Fb1D2c4E043eabCDDf058d929eEDbd79949ee945AdecEDc1d28232d4bC3abEeDa83c74F882bd33D410dCf9eAd9Ec0BD9a88aC89A0c4AAfeE3E55FC2D66Affb9baaEe773C5A8B7A6fBe2ebB17cdAF4a2eED23DD1eaBe8faa11Faed80CacEaEf9baBDEA0dC121e1b3BAb1601C899E1A92DAf3cC2dA1dffCeABB4d84FAa2dcbDCbEB3f6CEd50d4D67DAB14697ADBacE1EFBc4cfC4DeEE0abb81aeb4b8E92ee3aFeB736ab99febb58BBaFdFe91ceAF6f5d4E77cAfeaFefA95158c58062e12B2B1BD30aE46e1fc2eB590acFc9DaC5F83fcA7CAe251defD63AA12670D6aB5dEbebfACEd6FD5Af6b1AB21F367bF5dBcfb30beeab5A250CEbe8fddc6BeFa2d2849F28f35b2A30234e22B948cB3DF1a05b1c28F8c829720Ee050EDECe1B5bAeF011B4aAc07ED42D9e95BB7a47F5C59E09BF0bE6E700a9bB58479cf0d10a4Af61eBeAD74300322Dd18DD54bFdDfe5c0CCaCaf2ED7a3c5Aa5b6DC00C0c2F0eaC47ac8C8e782CcEbAE51bdf671EdEa7604edcdab1E80FfEe3CA8411f504A9eCB4A76041Fc6A6d46AAE9F3aaFFfcdFaa2831E3FB3ACaD3fa0a4b857153fCcD13CBf680ce742aecF4e9BaF9aa604CE8f6FDCB955Cede3f7F6e8c6AC9a6AcBB0E93caAEa9d67b82FfAb6A058Bf75Cff7eBfCd1Bb6B2cDE22F8eACFa964DF4ba28D9a13BFF77dEa2EA9eb5b5b2AbC85A8fefAd2EB145171CA4cEA2F4ef316BCa53FC14fADA8bDE9caf7d96Ce2BC84daC8ebCcc6B5Fb3D5489966a3a3fe8AA6B00F05511dE8B3C0A49DE5e4aAE4D9b4181D6ebBCBfaD3fAE7eDf1de8afa4ceeaFDCFF497AB304f05633C8C1C513cce3BcA84CABCf98dC10F37B2bDD5ceFdf06CcdCBFD37"
},
"acceptorTransactionId": "<string>",
"poi": {
"terminalId": "<string>",
"transactionChannel": "<string>",
"entryMode": "<string>"
}
}
Sample Response
"201": {
"description": "Card Verify processed successfully.",
"schema": {
"$ref": "#/definitions/VerifyResponse"
}
},
"400": {
"description": "Bad Request",
"schema": {
"$ref": "#/definitions/Error400"
}
},
"401": {
"description": "Unauthorized"
},
"403": {
"description": "Forbidden"
},
"404": {
"description": "Not Found",
"schema": {
"$ref": "#/definitions/Error404"
}
},
"500": {
"description": "Internal Server Error",
"schema": {
"$ref": "#/definitions/Error500"
}
},
"default": {
"description": "Unexpected error",
"schema": {
"$ref": "#/definitions/Error"
}
}
Updated 1 day ago