m2pfintech
API LibraryCard Lifecycle

Get CVV

Retrieves the CVV (Card Verification Value) for a card identified by its kit number. The response includes the CVV value and its expiry time in seconds. The CVV is time-limited and must be used before the expiryCvv time elapses. This is typically used for virtual card transactions where the customer needs to view the CVV.

POST
/kit-manager/getCvv

Authorization

tenantAuth
tenant<token>

The DCMS tenant name for multi-tenant isolation. Every API call must include this header to identify the client organization.

In: header

Header Parameters

tenant*string

The DCMS client or tenant name for multi-tenant isolation.

Request Body

application/json

kitNo*string

Kit number of the card whose CVV is being retrieved.

Response Body

application/json

curl -X POST "https://api.dcms.example.com/v1/kit-manager/getCvv" \  -H "tenant: ACME_BANK" \  -H "Content-Type: application/json" \  -d '{    "kitNo": "4240181647"  }'
{
  "result": {
    "cvv": "237",
    "expiryCvv": 120
  },
  "exception": null,
  "pagination": null
}