# Payment-PaymentMethodCardInput

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`

Payment-PaymentMethodCardInput

```
{

  "number": "string",

  "cvc": "string",

  "expMonth": "string",

  "expYear": "string",

  "cardholderName": "John Doe",

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

}
```
