get https://your_connector_url/customers//availableCardLimits
Get the default card limits from the corresponding provider, cardType and currency.
This endpoint allows you to determine which card limits can be modified for this integration. When calling the endpoint, your integration must return the available limit types supported by your card provider. Additionally, you should use the canEdit and optional fields to specify whether each limit can be modified and optional or not.
Implementation Details
- Response should include all applicable card limits that can be modified. Only return limits that are relevant and applicable for this integration.
- Use the optional field to specify if a limit is optional (true if the limit is not mandatory, false if required).
- Use the canEdit field to indicate whether a specific limit can be changed:
- If true, this limit will be modifiable in the edit limit form.
- If false, the limit will be read-only and cannot be modified by the user.
- If your card provider supports additional types of limits, include them in the response and notify the Toqio Delivery Team to ensure that our development team enables them in the system accordingly.
Currently we support the following types of card limits:
Limit type | Description |
---|---|
transactionLimit | the maximum amount allowed per single transaction. |
dailyLimit | the total spending for all transactions within a day. |
monthlyLimit | the total spending for all transactions within a month. |
lifetimeLimit | the maximum cumulative spending allowed for the card over its lifetime. |
purchasesDailyLimit | the total amount allowed for purchases in a single day. |
purchasesMonthlyLimit | the total amount allowed for purchases in a single month. |
atmDailyLimit | the maximum cash withdrawal amount allowed at ATMs per day. |
amtMonthlyLimit | the maximum cash withdrawal amount allowed at ATMs per month. |
atmOperationsLimit | the maximum number of ATM transactions allowed per day. |
purchasesOperationsLimit | the maximum number of purchase transactions allowed per day. |