Skip to main content
PATCH
/
api
/
public
/
v1
/
cards
/
{cardUuid}
/
status
curl --request PATCH \
  --url https://api.wallbit.io/api/public/v1/cards/{cardUuid}/status \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "status": "SUSPENDED"
}
'
{
  "data": {
    "uuid": "550e8400-e29b-41d4-a716-446655440000",
    "status": "SUSPENDED"
  }
}

Authorizations

X-API-Key
string
header
required

API Key authentication. Obtain your API key from the Wallbit dashboard under Settings → API Keys.

Path Parameters

cardUuid
string<uuid>
required

Card UUID

Body

application/json
status
enum<string>
required

Target card status

Available options:
ACTIVE,
SUSPENDED

Response

Card status updated successfully

data
object