Card Limits

The Get Card Limits endpoint enables you to view limits associated with a card, as well as other information related to the card.

You can retrieve a card's limits by making a GET request to the endpoint. For example:

{{base-url}}/cards/{{publicToken}}/balance/cardlimits

If successful, a 200 response is returned with the limits set on the card and additional information. A successful response will return the following details:

  • Available Balance
  • Max Allowable Balance
  • Currency Code
  • Blocked Amount
  • Card Limits

The Card Limits consists of multiple sub groups:

  • Pay-in Limits
  • Pay-out Limits
  • Load Limits
  • Unload Limits
  • POS Limits
  • Cash Limits

The below is an example of a successful 200 response.

{
    "availableBalance": 0,
    "maxAllowableBalance": 50000,
    "currencyCode": "GBP",
    "blockedAmount": 0,
    "cardLimits": [
        {
            "subGroup": "CASH",
            "period": 0,
            "unit": "day",
            "limit": 0,
            "frequency": 0,
            "usage": 0,
            "no": 0
        },
        {
            "subGroup": "PAY_IN",
            "period": 0,
            "unit": "day",
            "limit": 0,
            "frequency": 0,
            "usage": 0,
            "no": 0
        },
        {
            "subGroup": "PAY_OUT",
            "period": 0,
            "unit": "day",
            "limit": 0,
            "frequency": 0,
            "usage": 0,
            "no": 0
        },
        {
            "subGroup": "POS",
            "period": 4,
            "unit": "day",
            "limit": 4000,
            "frequency": 400,
            "usage": 0,
            "no": 0
        },
        {
            "subGroup": "UNLOAD",
            "period": 4,
            "unit": "day",
            "limit": 750,
            "frequency": 8,
            "usage": 0,
            "no": 0
        },
        {
            "subGroup": "LOAD",
            "period": 4,
            "unit": "day",
            "limit": 100,
            "frequency": 8,
            "usage": 0,
            "no": 0
        }
    ]
}

Each sub group of limit (CASH, POS, PAY_IN, PAY_OUT, LOAD and UNLOAD) will display in a successful response. Each will display the following information.

FieldDescription
subGroupThe type of limit.
periodThe number of units in the period.
unitThe type of period unit. This will be either:

Hour
Day
Month
Year
limitThe total financial amount of the limit per period.
frequencyThe number of transactions allowed in the period.
usageThe current usage of total financial amount for the limit.
NoThe current usage of number of transactions in the period.

👍

API Explorer

See the List Card Limits endpoint.