Skip to main content
PUT
/
cards
/
individual-cards
/
{cardId}
/
pin
curl -X PUT "https://api.cryptomate.me/cards/individual-cards/icard_6f1e2a30-4a3c-4b2e-9a1d-5e8c9b7a1f23/pin" \
  -H "x-api-key: $CRYPTOMATE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "pin": "1234"
  }'
{}
Sets or updates the PIN for an individual card. Requires an API key with access level 3 or higher.

Path

cardId
string
required
Unique identifier of the individual card.

Body

pin
string
required
New PIN for the card. Must be 4 to 12 digits.

Response

Returns HTTP 200 with an empty body on success.
curl -X PUT "https://api.cryptomate.me/cards/individual-cards/icard_6f1e2a30-4a3c-4b2e-9a1d-5e8c9b7a1f23/pin" \
  -H "x-api-key: $CRYPTOMATE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "pin": "1234"
  }'
{}