Payment-PaymentMethodInput
An information about a payment method used for this payment.
We recommend using paymentToken
instead, as it is more secure
way to pass sensitive payment information. Processing credit
card information on your server requires
PCI DSS compliance.
card object
Details about the card used as payment method. If provided, MONEI will try to confirm the payment directly.
The card number, as a string without any separators.
Card security code.
Two-digit number representing the card's expiration month.
Two-digit number representing the card's expiration year.
The cardholder's name, as stated in the credit card.
John Doe
The cardholder's email address.
john.doe@monei.com
bizum object
Details about the Bizum account used for this payment. If provided phone number is valid and registered in Bizum, MONEI will try to confirm the payment directly.
Phone number in E.164 format used to pay with bizum
.
null
{
"card": {
"number": "string",
"cvc": "string",
"expMonth": "string",
"expYear": "string",
"cardholderName": "John Doe",
"cardholderEmail": "john.doe@monei.com"
},
"bizum": {
"phoneNumber": null
}
}