GET
/
customers
/
{customerID}
/
card_accounts
/
{cardAccountID}
/
authorizations
Retrieve pending card authorizations
curl --request GET \
  --url https://api.bridge.xyz/v0/customers/{customerID}/card_accounts/{cardAccountID}/authorizations \
  --header 'Api-Key: <api-key>'
{
"count": 123,
"data": [
{
"id": "<string>",
"amount": "<string>",
"billing_amount": "<string>",
"currency": "usd",
"merchant_category_code": "<string>",
"description": "<string>",
"authorized_at": "<string>",
"details": {
"vendor_auth_id": "<string>"
},
"local_transaction_details": {
"amount": "<string>",
"currency": "<string>",
"exchange_rate": "<string>"
},
"verification_data": {
"address_check": "match",
"address_postal_code_check": "match",
"cvv_check": "match"
}
}
]
}

Authorizations

Api-Key
string
header
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

Query Parameters

limit
integer

The number of pending card authorizations to return, with a max of 200. The default is 100

starting_time
string

The starting time in ISO8601 format

ending_time
string

The exclusive ending time in ISO8601 format

Response

200
application/json

Pending card authorizations

The response is of type object.