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.
Authorization
tenantAuth The DCMS tenant name for multi-tenant isolation. Every API call must include this header to identify the client organization.
In: header
Header Parameters
The DCMS client or tenant name for multi-tenant isolation.
Request Body
application/json
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
}Fetch Transaction POST
Retrieves card transaction details with comprehensive filtering options. Supports filtering by kit number, entity ID, account number, date range, transaction channel, and response code. Returns paginated results with detailed transaction information including acquirer details, merchant information, amount, currency, authentication flags, and processing metadata.
Kit Activation POST
Activates a card kit that is in INACTIVE or ASSIGNED status. Once activated, the card becomes ready for use in transactions. Both entityId and kitNo are required to identify the specific card to activate.
