Skip to main content
PUT
/
cards
/
virtual-cards
/
{cardId}
/
reissue
curl -X PUT "https://api.cryptomate.me/cards/virtual-cards/card_6f1e2a30-4a3c-4b2e-9a1d-5e8c9b7a1f23/reissue" \
  -H "X-API-KEY: $CRYPTOMATE_API_KEY"
{
  "id": "card_6f1e2a30-4a3c-4b2e-9a1d-5e8c9b7a1f23",
  "card_holder_name": "John Doe",
  "type": "VIRTUAL",
  "last4": "7890",
  "status": "ACTIVE"
}
Reissues a virtual card, generating a new card with a new Primary Account Number (PAN). Requires an API key with access level 2 or higher.

Path parameters

cardId
string
required
Card identifier.

Response

Returns the reissued virtual card object.
id
string
Unique card identifier.
card_holder_name
string
Name of the cardholder.
last4
string
Last 4 digits of the new card number.
status
string
Current card status.
curl -X PUT "https://api.cryptomate.me/cards/virtual-cards/card_6f1e2a30-4a3c-4b2e-9a1d-5e8c9b7a1f23/reissue" \
  -H "X-API-KEY: $CRYPTOMATE_API_KEY"
{
  "id": "card_6f1e2a30-4a3c-4b2e-9a1d-5e8c9b7a1f23",
  "card_holder_name": "John Doe",
  "type": "VIRTUAL",
  "last4": "7890",
  "status": "ACTIVE"
}