Skip to main content

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.

numberstring

The card number, as a string without any separators.

cvcstring

Card security code.

expMonthstring

Two-digit number representing the card's expiration month.

expYearstring

Two-digit number representing the card's expiration year.

cardholderNameCardholderName (string)

The cardholder's name, as stated in the credit card.

Example: John Doe
cardholderEmailCardholderEmail (string)

The cardholder's email address.

Example: 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.

phoneNumberstring

Phone number in E.164 format used to pay with bizum.

Example: null
Payment-PaymentMethodInput
{
"card": {
"number": "string",
"cvc": "string",
"expMonth": "string",
"expYear": "string",
"cardholderName": "John Doe",
"cardholderEmail": "john.doe@monei.com"
},
"bizum": {
"phoneNumber": null
}
}