> ## Documentation Index
> Fetch the complete documentation index at: https://cashfreepayments-d00050e9-theme-update.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# CVV-Less Card Payments

CVV-less payments allow customers to complete transactions using saved card details without entering the Card Verification Value (CVV).
This enhances the user experience by streamlining the checkout process while maintaining transaction security through tokenisation and other protective measures.

CVV-less payments are supported for tokenised transactions using **Visa**, **Mastercard**, **RuPay**, **American Express (Amex)**, and **Diners Club** cards.

<img height="600" width="600" src="https://mintlify.s3.us-west-1.amazonaws.com/cashfreepayments-d00050e9-theme-update/static/images/pg/cvv-less-2.gif" />

## Benefits and security considerations

* **Broader network support:** Available across Visa, Mastercard, Amex, RuPay, and Diners networks.

* **Higher conversion and success rates:** CVV-less payments for tokenised cards typically improve success rates by 5% or more.

* **Enabled from day 0:** Enabled by default across all networks for tokenised cards from day 0.

* **CVV-less indicator:** Saved cards display a **No CVV Required** label during checkout on the Cashfree Checkout.

  ![Alt text](https://mintlify.s3.us-west-1.amazonaws.com/cashfreepayments-d00050e9-theme-update/static/images/pg/cvv-less-1.png)

* **Faster checkout and reduced friction:** Customers do not need to remember or enter CVV details for saved cards.

* **Secure and compliant:** Transactions are protected by tokenisation, OTP validation, 3D Secure authentication, and real-time risk checks. Fully compliant with PCI DSS, RBI regulations, and card network guidelines.

## Using CVV-less payments with Cashfree Payment Gateway

CVV-less payments integrate seamlessly with Cashfree’s infrastructure. Depending on your integration method, minimal changes may be required.

### For merchants on seamless API integration

For saved card transactions across supported networks, the `[card_cvv]`  field is optional by default. To enable CVV-less payments, exclude this field from your payment request.

**Sample API request (Order Pay)**

<CodeGroup>
  ```javascript For external card tokens
  curl --request POST \
    --url https://sandbox.cashfree.com/pg/orders/sessions \
    --header 'Content-Type: application/json' \
    --header 'x-api-version: <x-api-version>' \
    --data '{
    "payment_session_id": "session__CvcEmNKDkmERQrxnx39ibhJ3Ii034pjc8ZVxf3qcgEXCWlgDDlHRgz2XYZCqpajDQSXMMtCusPgOIxYP2LZx0-05p39gC2Vgmq1RAj--gcn",
    "payment_method": {
      "card": {
        "channel": "link",
        "card_number": "4111111111111111",
        "card_expiry_mm": "03",
        "card_expiry_yy": "26",
        "cryptogram": "AQBBBBBBZatIlaIAmWKSghwBBBB=",
        "card_cvv": "900",  // Optional
        "token_requestor_id": "22457512314",
        "card_display": "3243"
      }
    }
  }'
  ```

  ```javascript For internal card tokens
  curl --request POST \
    --url https://sandbox.cashfree.com/pg/orders/sessions \
    --header 'Content-Type: application/json' \
    --header 'x-api-version: <x-api-version>' \
    --data '{
    "payment_session_id": "session__CvcEmNKDkmERQrxnx39ibhJ3Ii034pjc8ZVxf3qcgEXCWlgDDlHRgz2XYZCqpajDQSXMMtCusPgOIxYP2LZx0-05p39gC2Vgmq1RAj--gcn",
    "payment_method": {
      "card": {
        "channel": "link",
        "instrument_id": "54deabb4-ba45-4a60-9e6a-9c016fe7ab10",
        "card_cvv": "900" // Optional
      }
    }
  }'
  ```
</CodeGroup>

For more details, refer to the [Order Pay API documentation](https://www.cashfree.com/docs/api-reference/payments/latest/payments/pay).

**Update your checkout UI**

Update your checkout interface to stop collecting CVV for saved card payments.

* For tokenised cards on Visa, Mastercard, Amex, RuPay, and Diners, remove the `[card_cvv]` field from the card object.

<Note>
  **Note:** CVV input is optional only for tokenised card transactions, that is, transactions attempted through a saved card. For guest users making payments, CVV input remains mandatory.
</Note>

### For merchants using Cashfree Checkout UI

CVV-less payments are enabled by default for all saved card transactions across supported networks. No additional configuration is required.

## Frequently asked questions

<AccordionGroup>
  <Accordion title="What is a CVV-less card payment?">
    A CVV-less card payment allows customers to complete a card transaction without entering the Card Verification Value (CVV)—a 3- or 4-digit security code typically required at checkout.
  </Accordion>

  <Accordion title="How is the transaction secured without CVV?">
    Security for CVV-less transactions is ensured through 3D Secure (3DS), OTP (One-Time Password) authentication, secure encryption of card data, and other additional risk checks such as real-time fraud detection.
  </Accordion>

  <Accordion title="Are CVV-less payments compliant with regulatory guidelines (like RBI or PCI DSS)?">
    Yes. CVV-less payments are compliant as long as they involve tokenised cards and adhere to the card network and RBI guidelines for authentication.
  </Accordion>

  <Accordion title="Why should a merchant allow CVV-less payments?">
    CVV-less payments reduce friction at checkout, improving conversion rates and enhancing customer experience, especially for a returning user base in mobile-first markets.
  </Accordion>

  <Accordion title="What are the pre-requisites for CVV-less payments?">
    CVV-less card payment experience can only be provided for tokenised cards, that is, when the card is securely saved with a merchant.
  </Accordion>

  <Accordion title="Will offering CVV-less payments increase my payment success rates?">
    Yes. CVV-less card payment feature improves conversion rates as well as success rates, typically around 2–4 percent on average.
  </Accordion>

  <Accordion title="Which card networks allow CVV-less payments?">
    CVV-less flow is supported for tokenised payments on Visa, Mastercard, RuPay, Amex, and Diners.
  </Accordion>

  <Accordion title="Is CVV-less payment possible via Payment Links and Payment Forms?">
    Yes. CVV-less payments are supported on both Payment Links (PL) and Payment Forms (PF).
  </Accordion>

  <Accordion title="Is CVV-less by default enabled?">
    Yes. CVV-less payments are supported from day 0 itself. Merchants can provide a CVV-less experience for their customers (but only on tokenised cards).
  </Accordion>
</AccordionGroup>
