1. Store card for future use
The first step is to store the card data for future use. Use the checkout session as described in our quick-start to store the card details as a new payment method in our vault. This can be done either at the time of creating a transaction by setting thestore property to true,
or when creating a new payment method
directly from the checkout session.
The returned payment method includes details about the card that was used, as well
as the id of the payment method that we can use in the next step.
2. Collect the CVV
At checkout, Secure Fields can be used to collect the CVV for a previously stored card. When initializing Secure Fields, pass thepaymentMethod object with both the id and scheme of the previously stored card. This enables proper validation for the security code based on the card scheme (e.g., 3 or 4 digits) and provides the appropriate security code label (CVV, CVC, CID) in the field data.
The
paymentMethodId prop is deprecated but still supported for backward compatibility. We recommend using the new paymentMethod prop to benefit from scheme-specific CVV validation.When using the
paymentMethodId or paymentMethod object with Secure Fields, only the
security code can be captured. Attempting to add any of the other
fields (number, expiration date) will result in an error.