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' \
  --header 'Idempotency-Key: <idempotency-key>' \
  --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
required

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

initiator
enum<string>
required

The party of the freeze to be removed The party that initiated the freeze. A freeze can be initiated by either the customer or developer. Only one freeze per initiator can be active at a time. If a new freeze is initiated by the same party, it overwrites any existing freeze

Available options:
developer,
customer

Response

The successfully removed freeze

Card unfreeze response Card freeze

card_account_id
string
required

Card account ID

Required string length: 1 - 42
initiator
enum<string>
required

The party that initiated the freeze. A freeze can be initiated by either the customer or developer. Only one freeze per initiator can be active at a time. If a new freeze is initiated by the same party, it overwrites any existing freeze The initiator of the removed freeze

Available options:
developer,
customer
reason
enum<string>
required

The reason of the freeze The reason of the removed freeze

Available options:
lost_or_stolen,
suspicious_activity,
planned_inactivity,
suspected_fraud,
other
created_at
string
required

The creation time of the freeze, in ISO8601 format The creation time of the removed freeze, in ISO8601 format

status
enum<string>
required

The processing status of the unfreeze request

Available options:
freeze_removed
reason_detail
string

A more detailed reason for the freeze The reason detail of the removed freeze

starting_at
string

The start time of the freeze, in ISO8601 format The start time of the removed freeze, in ISO8601 format

ending_at
string

The end time of the freeze, in ISO8601 format The end time of the removed freeze, in ISO8601 format