Authorize Cardinal to complete Card Validation
To authorize cardinal for card validation use this end point
1 |
POST /api/v3/purchases/validations |
1 2 3 4 5 6 7 8 9 10 |
{ "authData":"AMZtxiP2Jxx5PjYnM+YbtxMt56j/0cfaqo27oCTEa7ifuONNODvmshDVLYdSl0YZ41dETsI1ZgzRy6iYvPUZ0g2E41AU4 wAcmU55sFsuEyAfuHWVrw/sOuyBtg/vO9k1Khv/KPNHw/bg8GvmWPclS1Ti4V01sMkEdjGDX3L3geh05fCHrk8/Z8VHOLMHQ4v9sKbsrw zglS9qBRTqHhfYmayG2+s4j3KE82hPeK/6trxtvJ0vCE6h2/UOyxaD+WjtrQblSW/g8Cpyhw3AkE9JR14bNxQXQWCeWI1obwPcGHE04gs KFLekBIjFqKlszMXHlkevBHgdSHnexbWjtj/O6Q==", // Authentication Data. "transactionId":"MSPjKBV2Kyg91MQRMep0", // Transaction unique identifier. "eciFlag":"07", // The Electronic Commerce Indicator (ECI) Flag e.g Visa:05: Issuer Liability, // 06: Issuer Liability, 07: Merchant Liability. "transactionRef": "cW5m837DjswX" } |
Sample Response (success)
After the request has been sent, the expected successful response is similar to this.
1 2 3 4 5 6 7 8 9 |
{ "transactionIdentifier": "GTB|WEB|VNA|23-05-2016|66603|999591", // Transaction unique identifier. "tokenExpiryDate": "2004", // Card or Token expiry date in YYMM format. "cardType": "Visa", // Type of the card. "transactionRef": "ESBDEV10003", // Unique transaction reference number. "token": "5123453847245380", // Card Number or Token. "panLast4Digits": "0002", // PAN Last four digit. "balance": "" // Monetary balance of payment instrument. } |