Skip to main content
PATCH
/
cards
/
virtual-cards
/
{cardId}
/
frozen
curl -X PATCH "https://api.cryptomate.me/cards/virtual-cards/card_6f1e2a30-4a3c-4b2e-9a1d-5e8c9b7a1f23/frozen" \
  -H "X-API-KEY: $CRYPTOMATE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "freeze": true
  }'
{}
Sets the frozen status of a virtual card. Frozen cards cannot authorize transactions until they are unfrozen. Requires an API key with access level 3 or higher.

Path parameters

cardId
string
required
Card identifier.

Body

freeze
boolean
Whether to freeze (true) or unfreeze (false) the card.

Response

Returns HTTP 200 with an empty body on success.
curl -X PATCH "https://api.cryptomate.me/cards/virtual-cards/card_6f1e2a30-4a3c-4b2e-9a1d-5e8c9b7a1f23/frozen" \
  -H "X-API-KEY: $CRYPTOMATE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "freeze": true
  }'
{}