v1

latestOpenAPI 3.1.02026-07-26165182724.7 KB

Destroy a Virtual Card

Close a virtual card and unlink it from it's account such that it cannot be used again. Useful for stolen credentials and implementing burner cards.

IMPORTANT - When a card is burned, it is automatically unlinked from the account it was linked to and permanently disabled. This card cannot be relinked.

post/card/burn

Headers

api-keystring required
Authorizationstring required

Request body

cardIdstring required

The unique Id of the card you want to burn. The Create Card endpoint returns a cardId parameter

Response

200

namestring
idstring
typestring
maskedCardNumberstring
expiryDatastring
statusstring
addressobject
isEnrolledFor3dSecureboolean
activatedAtstring
linkedAccountIdstring
parentWalletIdstring
linkedAccountCurrencystring
createdAtstring

Example response

{
  "name": "Katarina Douglas",
  "id": "88c70b03-2c75-4f48-98c9-bf7afe7dc8ac",
  "type": "VIRTUAL",
  "maskedCardNumber": "487130******5609",
  "expiryData": "2024-08-31T23:59:59Z",
  "status": "CLOSED",
  "isEnrolledFor3dSecure": true,
  "security": {
    "contactlessEnabled": true,
    "withdrawalEnabled": true,
    "internetPurchaseEnabled": true,
    "overallLimitsEnabled": true
  },
  "activatedAt": "2022-09-05T14:57:29Z",
  "linkedAccountId": "UNLINKED",
  "parentWalletId": "UNLINKED",
  "linkedAccountCurrency": "USDT",
  "createdAt": "2022-09-05T14:57:28Z"
}