Get Card CVV — Retrieve Card CVV
Returns the card CVV (3 or 4 digits). This is highly sensitive data — ensure strict authorization, audit logging, and secure transport.
Limitations: Only authorized callers should use this endpoint; misuse may result in security violations.
POST{gateway}/pcs/api/v1/get-card-cvv
Payload
| Attribute | Type | Required | Description |
|---|---|---|---|
| cardId | Integer | Conditional | Internal card ID. Required if token not provided. |
| token | Integer | Conditional | Card token (PAN surrogate). Required if cardId not provided. |
Request Example
{
"cardId": 1722
}Response
| Attribute | Type | Description |
|---|---|---|
| data | Object | Wrapper for response data. |
| data.cvv | String | CVV / CVC value. |
200 — SUCCESS
{
"data": {
"cvv": "756"
}
}