Skip to main content
POST
/
api
/
v1
/
cards
/
unlock
Unlock card
curl --request POST \
  --url https://staging.qash.ai/api/v1/cards/unlock \
  --header 'Authorization: Bearer <token>' \
  --header 'x-idempotency-key: <x-idempotency-key>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "status": "active"
}
This endpoint requires Authorization: Bearer <token>.
x-idempotency-key is required. Use a unique UUID for each unlock request.
A card with status canceled cannot be reactivated.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

x-idempotency-key
string<uuid>
required

Unique idempotency key for the operation. Use a UUID to prevent duplicate processing.

Response

Card unlocked successfully.

id
string<uuid>
required
status
enum<string>
required
Available options:
notActivated,
active,
locked,
canceled