POST
/
customers
/
{customerID}
/
card_accounts
/
{cardAccountID}
/
unfreeze
Unfreeze the card account
curl --request POST \
  --url https://api.bridge.xyz/v0/customers/{customerID}/card_accounts/{cardAccountID}/unfreeze \
  --header 'Api-Key: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "initiator": "developer"
}'
{
"card_account_id": "<string>",
"initiator": "developer",
"reason": "lost_or_stolen",
"reason_detail": "<string>",
"starting_at": "<string>",
"ending_at": "<string>",
"created_at": "<string>",
"status": "freeze_removed"
}

Authorizations

Api-Key
string
header
required

Headers

Idempotency-Key
string

Path Parameters

customerID
string
required

A UUID that uniquely identifies a resource

Required string length: 1 - 42
cardAccountID
string
required

A UUID that uniquely identifies a resource

Required string length: 1 - 42

Body

application/json

A request to unfreeze the card account

The body is of type object.

Response

200
application/json

The successfully removed freeze

Card unfreeze response Card freeze