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

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

The freeze to be placed on the card account

The body is of type object.

Response

200
application/json

The successfully placed freeze

Card freeze