Transaction Limits
Customers can view their transaction limits by providing parameters such as transactionType, thirdPartyConfig, or cardId in the request. Based on these filters, users can view limits related to a specific transaction type, a particular card, a specific third-party configuration, or all of them at once.
GET{baseUrl}/re/api/v1/transaction-limits
Query Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| transactionType | String | No | Transaction type related to which the user wants to see the limit. |
| thirdPartyConfig | String | No | Third-party config related to which the user wants to see the limit. |
| cardId | Integer | No | Card ID related to which the user wants to see the limit. |
Response
| Field | Type | Description |
|---|---|---|
| id | Integer | ID of limit. |
| transactionType | String | Type of transaction to which the limit is linked. |
| frequency | String | Frequency of the limit (e.g., DAILY, MONTHLY, ONE_TIME). |
| currencyCode | String | Currency the limit belongs to. |
| limitType | String | Type of limit (e.g., LIMIT, COUNT). |
| slug | String | Slug of the defined limit. |
| operator | String | Operator of limit (e.g., GREATER, LESS, LESS_THAN, LESS_THAN_OR_EQUAL). |
| thirdPartyConfig | String | Third-party transaction the specific limit is linked to. |
| limit | String | Value of limit. |
| allowedLimit | String | Allowed limit value. |
200 — SUCCESS
{
"data": [
{
"id": 175,
"transactionType": "DEPOSIT",
"frequency": "ONE_TIME",
"currencyCode": "AED",
"limitType": "LIMIT",
"slug": "ONE_TIME_DEPOSIT_MAX_VP_ACQ_LIMIT",
"operator": "LESS_THAN",
"thirdPartyConfig": "vp-acq",
"limit": "20000.00",
"allowedLimit": "200000.00"
}
]
}