> ## Documentation Index
> Fetch the complete documentation index at: https://docs.paymend.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Encrypted card

> Details of a credit/debit card payment method that is encrypted before sending the request to Paymend

The `encryptedCard` object contains the credit or debit card information needed to process a payment.

## Properties

| Field         | Type     | Required | Description                                     |
| :------------ | :------- | :------: | :---------------------------------------------- |
| `number`      | `string` |     ✅    | Encrypted card number (PAN)                     |
| `holderName`  | `string` |     ✅    | Name printed on the card                        |
| `cvv`         | `string` |     ❌    | Encrypted card verification value               |
| `expiryMonth` | `string` |     ✅    | Expiration month (01-12)                        |
| `expiryYear`  | `string` |     ✅    | Expiration year (4 digits)                      |
| `brand`       | `string` |     ❌    | Card brand (e.g., "VISA", "MASTERCARD", "AMEX") |

## Security Notes

<Warning>
  **Never store card details** - Always use tokenization for recurring payments. Card data should only be used for immediate processing.
</Warning>
