Subscription-PaymentMethod
Details about the payment method at the time of the transaction.
Subscription method type.
| Enum Value | Description |
|---|---|
| card | Card |
| bizum | Bizum |
Possible values: [card, bizum]
cardcard object
Details about the card used as payment method at the time of the transaction.
Card brand.
| Enum Value | Description |
|---|---|
| visa | Visa credit or debit card |
| mastercard | Mastercard credit or debit card |
| diners | Diners Club credit card |
| amex | American Express credit card |
| jcb | Japan Credit Bureau card |
| unionpay | UnionPay card from China |
| unknown | Card brand could not be determined |
Possible values: [visa, mastercard, diners, amex, jcb, unionpay, unknown]
visaCard type debit or credit.
Possible values: [debit, credit]
creditWhether this transaction used 3D Secure authentication.
falseThe protocol version of the 3DS challenge.
2.1.0The flow used for 3DS authentication.
| Enum Value | Description |
|---|---|
| CHALLENGE | Authentication requiring additional shopper interaction through biometrics, 2FA, or other SCA methods |
| FRICTIONLESS | Background authentication using device fingerprint without additional shopper interaction |
| FRICTIONLESS_CHALLENGE | Complete 3DS flow with additional authentication if initial data collection is insufficient |
| DIRECT | Transaction exempt from SCA due to low risk assessment |
Possible values: [CHALLENGE, FRICTIONLESS, FRICTIONLESS_CHALLENGE, DIRECT]
CHALLENGETime at which the card will expire. Measured in seconds since the Unix epoch.
2048544000The last four digits of the card.
0004The digital wallet used to tokenize the card.
Possible values: [applePay, googlePay, clickToPay]
applePayThe name of the cardholder.
John DoeThe email of the cardholder.
email@example.combizum object
Details about the Bizum account used as payment method at the time of the transaction.
Phone number in E.164 format used to pay with bizum.
null{
"method": "card",
"card": {
"country": "ES",
"brand": "visa",
"type": "credit",
"threeDSecure": false,
"threeDSecureVersion": "2.1.0",
"threeDSecureFlow": "CHALLENGE",
"expiration": 2048544000,
"last4": "0004",
"tokenizationMethod": "applePay",
"cardholderName": "John Doe",
"cardholderEmail": "email@example.com"
},
"bizum": {
"phoneNumber": null
}
}