v1

latestOpenAPI 3.0.02026-07-267331140.7 KB
Card Management

Link physical card to user

Verifies a card by decrypting PAN details and associating it with the authenticated user

post/api/v1/cards/verify

Request body

encryptedPanstring required

Encrypted Primary Account Number

encryptedKeystring required

Encrypted key used for decryption

ivstring required

Initialization vector for decryption

Example request

{
  "encryptedPan": "encrypted_pan_value",
  "encryptedKey": "encrypted_key_value",
  "iv": "iv_value"
}

Response

Successfully verified and associated the card

cardIdstring required

The unique identifier of the verified card

Example response

{
  "cardId": "clp3j1f9a0000a1cdh6ezx2qv"
}