Spending limits
Retrieve spending limit for a card
Returns the spending limit for a given card.
get/cards/{cardId}/spending-limits
Path parameters
cardIdstring uuid required
The ID of the card to work with.
Example:e9293471-5eb3-4dbc-916c-dbaf9e2deefd
Query parameters
accountIdstring required
The ID of the account to work with.
Example:F50091
budgetIdstring uuid required
The ID of the budget to work with.
Example:775596ae-2624-40af-a9dc-9756110a4a03
personIdstring uuid
The ID of the person to work with.
Example:775596ae-2624-40af-a9dc-9756110a4a04
limitinteger
The maximum number of results to return.
Example:200
offsetinteger
The number of items to skip before returning results.
Example:100
Response
OK
Example response
{
"limit": 200,
"offset": 100,
"count": 67,
"rows": [
{
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"amount": 100.5,
"currencyCode": "GBP",
"active": true,
"limitTurnedOff": true,
"limitWindow": "DAY",
"available": {
"uses": 0,
"amount": 100.5,
"daysRemaining": 1
}
}
]
}