daily_limit — maximum spend per calendar daymonthly_limit — maximum spend per calendar monthper_transaction_limit — maximum amount per single transactionatm_withdrawal_limit — maximum ATM cash withdrawal per dayyearly_limit — annual spend caplifetime_limit — total lifetime spend cap| Field | Type | Description | Notes |
|---|---|---|---|
card_id | string (uuid) | - | - |
daily_limit | number | - Example: 500.0 | nullable |
monthly_limit | number | - Example: 5000.0 | nullable |
per_transaction_limit | number | - Example: 250.0 | nullable |
atm_withdrawal_limit | number | - Example: 200.0 | nullable |
yearly_limit | number | - | nullable |
lifetime_limit | number | - | nullable |
currency | string | - Example: GBP | nullable |
curl --location -g --request GET '{{baseUrl}}/api/v1/cards/a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11/limits' \
--header 'X-API-Key;' \
--header 'X-Signature;' \
--header 'X-Timestamp;' \
--header 'X-Nonce;' \
--header 'X-Body-Hash;'{
"data": {
"card_id": "a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11",
"daily_limit": 500,
"monthly_limit": 5000,
"per_transaction_limit": 250,
"atm_withdrawal_limit": 200,
"yearly_limit": 50000,
"lifetime_limit": null,
"currency": "GBP"
}
}