get https://your_connector_url/customers//cards/type//clientType//limits/
When getting this request you must send the limits defined in the provider when receiving this request with the defined parameters. These limits are defined per customer, provider, card type, client type and currency.
This endpoint is used to define the minimum and maximum allowed values for each card limit.
Implementation Details
- The response should include the minimum and maximum values for each supported card limit.
- These values will be used to validate user input when modifying limits in the issue new card form and edit card limit form.
- Confirm with the Toqio Development Team to make sure validation is properly implemented.
{
"data": {
"provider": "string",
"currency": "string",
"minDailyLimit": 0,
"maxDailyLimit": 900,
"minMonthlyLimit": 0,
"maxMonthlyLimit": 900,
"minTransactionLimit": 0,
"maxTransactionLimit": 900,
"minLifetimeSpendLimit": 0,
"minATMDailyLimit": 0,
"maxATMDailyLimit": 0,
"minATMMonthlyLimit": 0,
"maxATMMonthlyLimit": 0,
"minATMOperationsLimit": 0,
"maxATMOperationsLimit": 0,
"minPurchasesDailyLimit": 0,
"maxPurchasesDailyLimit": 0,
"minPurchasesMonthlyLimit": 0,
"maxPurchasesMonthlyLimit": 0,
"minPurchasesOperationsLimit": 0,
"maxPurchasesOperationsLimit": 0
},
"code": "OK",
"errorSeverity": "NONE",
"message": "Ok",
"httpStatus": 200,
"requestId": "26b0f78a-79f9-426d-a20b-79841345ae51",
"date": "2024-08-01T00:00:00.000Z"
}