PaymentCardInput
PaymentCardInput contains payment card information supplied by the client.
Card type as recognised by providers.
Possible values: [AX, BC, CA, CB, CU, DC, DS, E, EC, ER, EU, JC, L, N, O, OP, R, S, T, TO, TP, VI, XS]
holder object
Card holder information.
Holder given name.
Holder family name.
Courtesy title for the holder.
Possible values: [MR, MRS, MISS, MS, NOT_SPECIFIED]
contactInfo object
Contact details for the holder.
Primary email address that providers can use for notifications.
phone object
Traveller phone information for confirmations or alerts.
International country dialling prefix without the plus sign.
Subscriber number excluding the country code.
Street address of the contact person.
City associated with the contact address.
Country ISO code associated with the contact address.
Postal or ZIP code associated with the contact address.
Card number with no separators.
Card verification code.
expire object
Card expiry details.
Expiry month expressed from 1 to 12.
Expiry year expressed with four digits.
Indicates whether the card is virtual.
virtualCreditCard object
Additional details for virtual credit cards.
Activation timestamp for the virtual card.
Deactivation timestamp for the virtual card.
Current available balance.
ISO 4217 currency code for the balance.
threeDomainSecurity object
3DS authentication data captured during payment.
3DS version used during authentication.
Directory server transaction identifier.
Transaction identifier (XID).
Electronic commerce indicator.
Cardholder authentication verification value.
Raw payer response returned by the authentication system.
Parsed status for the payer response.
Possible values: [AUTHENTICATION_SUCCESS, AUTHENTICATION_FAILED, AUTHENTICATION_INCOMPLETE, TRANSACTION_ATTEMPT_SUCCESS_A, TRANSACTION_ATTEMPT_SUCCESS_B, AUTHENTICATION_REJECTED]
Enrolment status of the card in 3DS.
Possible values: [CARD_ENROLLED, CARD_NOT_ENROLLED, CANT_AUTHENTICATE]
Merchant name presented during authentication.
Signature validation result.
Possible values: [SIGNATURE_VALIDATED, SIGNATURE_NOT_VALIDATED]
{
"type": "AX",
"holder": {
"name": "string",
"surname": "string",
"title": "MR",
"contactInfo": {
"email": "string",
"phone": {
"countryCode": "string",
"number": "string"
},
"address": "string",
"city": "string",
"country": "string",
"postalCode": "string"
}
},
"number": "string",
"CVC": "string",
"expire": {
"month": 0,
"year": 0
},
"isVCC": true,
"virtualCreditCard": {
"activationDate": "2024-07-29T15:51:28.071Z",
"deactivationDate": "2024-07-29T15:51:28.071Z",
"currentBalance": 0,
"currencyCode": "string"
},
"threeDomainSecurity": {
"version": "string",
"DSTransactionID": "string",
"XID": "string",
"ECI": "string",
"CAVV": "string",
"payerResponse": "string",
"payerResponseStatus": "AUTHENTICATION_SUCCESS",
"cardEnrolledStatus": "CARD_ENROLLED",
"merchantName": "string",
"signatureStatus": "SIGNATURE_VALIDATED"
}
}