# 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](https://www.investopedia.com/terms/p/pci-compliance.asp).

**card** <!-- -->object

Details about the card used as payment method. If provided, MONEI will try to confirm the payment directly.

**number**string

The card number, as a string without any separators.

**cvc**string

Card security code.

**expMonth**string

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

**expYear**string

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

**cardholderName**CardholderName

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

**Example:<!-- -->&#x20;**`John Doe`

**cardholderEmail**CardholderEmail

The cardholder's email address.

**Example:<!-- -->&#x20;**`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.

**phoneNumber**string

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

**Example:<!-- -->&#x20;**`null`

Payment-PaymentMethodInput

```
{

  "card": {

    "number": "string",

    "cvc": "string",

    "expMonth": "string",

    "expYear": "string",

    "cardholderName": "John Doe",

    "cardholderEmail": "john.doe@monei.com"

  },

  "bizum": {

    "phoneNumber": null

  }

}
```
