📄 Guide
Whether or not you hold PCI certification, you can let end users securely view the full card number, CVV and expiry date of their own card. DCS offers a separate path for each of these two partner types: an encrypted payload returned to your backend, or a DCS-hosted guidance page. As a licensed issuer with its own BINs, DCS encrypts secure card details end to end in transit, and sensitive data is never persisted in the clear. Secure card details (full PAN, CVV2, expiry date) are highly sensitive data governed by PCI DSS. The card management endpoints only return the first 6 and last 4 digits of the card number (panFirst6 / panLast4); to obtain the full value in the clear, you must use one of the secure retrieval paths described on this page.
Two paths: start by checking whether you hold PCI certification
DCS splits partners into two groups based on PCI certification, and the two paths are entirely different:Which path you use is not a design choice; it is determined by your PCI certification status. Do not attempt to call Path 1 if you are not certified.
Path 1: retrieve secure card details (PCI certified)
Who does it: the partner (backend call, decryption and frontend display). Available only to PCI-certified partners.
Endpoint
Request parameters
Response
Every response uses the standard envelope{ code, message, messageDetail, data } (the envelope fields are explained once in Authentication and security). All sensitive fields inside data are encrypted:
Decryption
Thepan, cvv2 and expireDate fields are encrypted with AES-GCM. The key is the enterpriseSecret assigned to you during onboarding (Base64-decoded into key bytes, with the key length determined by the number of decoded bytes), and the initialization vector is the iv returned alongside the payload. The official Java implementation from the source documentation (AES/GCM/NoPadding, 12-byte IV, 128-bit authentication tag) is:
iv. Once decrypted, render them in your frontend and do not write them back or persist them.
Encryption specification: the key is the Base64-decoded byte string ofenterpriseSecret(its bit length follows the secret length; production currently uses 16 bytes, i.e. AES-128). A random 12-byte IV is generated per request and returned in theivfield. The 128-bit GCM tag is appended to the ciphertext, andciphertext + authTagis Base64-encoded as a whole. The caller must also be on the PCI whitelist, thecardIdmust belong to the calling Enterprise, and the card status must beACTIVATED.
Path 2: view the details on the hosted guidance page (no PCI certification)
Who does it: the partner requests the link, and DCS hosts the page and shows the plaintext to the end user.Without PCI certification, DCS provides a hosted H5 page that displays the secure card details, so plaintext never passes through the partner backend. All you need to do is obtain a one-time guidance page link and have the end user open it in your frontend.
Endpoint
Request parameters (card details scenario, type=1)
otpStatusis required only fortype=2(set PIN) andtype=3(reset PIN); it is not needed for a card details lookup (type=1). The othertypevalues (face verification, KYC and so on) and their required fields are documented in Hosted guidance page.
Response
data is a single string: the guidance page link for the end user to open.
The guidance page link is backed by a temporary token held in Redis: the token is deleted as soon as it has been validated, so it is a single-use credential and is also subject to a TTL. Pass it to the end user immediately after you obtain it, and do not cache or reuse it. The server verifies that the card belongs to the given user and Enterprise. The public, unauthenticated validation endpoints are/card-bridge/redirect/public/v1/secret-validateand/card-bridge/redirect/public/v1/check-token-valid.
Prerequisites
- A card has been issued successfully and you have its
cardId(see Card issuance). - Path 1: DCS has confirmed that you hold PCI certification, and you are storing
enterpriseSecretsecurely. - Path 2: you have confirmed that the
cardIdbelongs to thecustomerIdyou are passing.

