Store the card verification code (CVC) for a card associated with a gateway token.
Use the following request to store a card's CVC.
The CVC will be stored for 20 minutes before being automatically deleted.
curl -i -X PUT \
https://api-services.pxp.io/api/v1/token-vault/MerchantGroup/MERCHANT-GROUP-1/vaults/gateway-tokens/7f46c09d-d1d1-4f94-9a88-6e8ac32e6341/card-verification-code \
-H 'Content-Type: application/json' \
-d '{
"cardVerificationCode": "123"
}'| Parameter | Description |
|---|---|
ownerIdstring (0 to 20 characters) required | The unique identifier of the entity that owns the token. |
ownerTypestring (enum) required | The type of entity that owns the token. Possible values:
|
gatewayTokenIdstring (UUID) required | The unique identifier of the gateway token, as assigned by PXP. |
| Parameter | Description |
|---|---|
cardVerificationCodestring (3-4 characters) required | The Card Verification Code (CVC) associated with the payment card. The CVC is a security feature for transactions where the card is not physically present. This is typically a 3 or 4 digit number found on the card. |
If your request is successful, you'll receive an empty 200 response.