v1
latestOpenAPI 3.0.02026-07-242035712.0 MBSet Account Limit
<ul><li class="docBullet">This API allows to set account Limit.</li><li class="docBullet">account limits are set up to limit the amount and frequency of transactions for a particular account.</li><li class="docBullet">account Limits are set by the bank but they can be adjusted by the cardholder to lower the amount and the frequency of transactions allowed. For example, if the weekly limit for domestic ATM withdrawal is set to 5,000 USD and 3 transactions per week, the cardholder can further restrict it by decreasing the amount, for example, to 3,000 USD, and the number of transactions to 2 per week. The cardholder however cannot increase the amount or transaction frequency.</li><li class="docBullet">Fields with suffix _bn_lim or just _bn are Limits to set by the Bank .</li><li class="docBullet">Fields with suffix _ch_lim or just _ch are Limits to set by the card holder.</li></ul>Request body
account Id in which Limit is set
Unique number that must be passed at each API request. Identifier to make each API request unique
Unique identifier for the client which Paymentology will provide at outset
User Id of the Customer who triggered the API request.
Remarks for API request
The maximum amount of a single transaction in this category.
The maximum aggregated amount of transactions in this category allowed during one hour (counted as 60 minutes back from the current date/time).
The maximum aggregated amount of transactions in this category allowed during 24 hours (counted back from the current date/time).
The maximum aggregated amount of transactions in this category allowed during one week (counted back from the current date/time).
The maximum aggregated amount of transactions in this category allowed during one month (counted back from the current date/time) .
The maximum aggregated amount of transactions in this category allowed during one year (counted back from the current date/time).
The maximum number of transactions allowed in one hour (counted as 60 minutes back from the current date/time).
The maximum number of transactions allowed in 24 hours (counted back from the current date/time).
The maximum number of transactions allowed in one week (counted back from the current date/time).
The maximum number of transactions allowed in one month (counted back from the current date/time).
The maximum number of transactions allowed in one year (counted back from the current date/time).
Minimum interval between two consecutive successful transactions in this category allowed. Note: min_success_txn_interval_bn cannot be > min_success_txn_interval_ch.
Minimum interval between any two consecutive transactions (successful or not) in this category allowed. Note : min_any_txn_interval_bn cannot be > min_any_txn_interval_ch.
The maximum amount of a single transaction in this category.
The maximum aggregated amount of transactions in this category allowed during one hour (counted as 60 minutes back from the current date/time).
The maximum aggregated amount of transactions in this category allowed during 24 hours (counted back from the current date/time).
The maximum aggregated amount of transactions in this category allowed during one week (counted back from the current date/time)
The maximum aggregated amount of transactions in this category allowed during one month (counted back from the current date/time)
The maximum aggregated amount of transactions in this category allowed during one year (counted back from the current date/time)
The maximum number of transactions allowed in one hour (counted as 60 minutes back from the current date/time).
The maximum number of transactions allowed in 24 hours (counted back from the current date/time).
The maximum number of transactions allowed in one week (counted back from the current date/time).
The maximum number of transactions allowed in one month (counted back from the current date/time).
The maximum number of transactions allowed in one year (counted back from the current date/time).
Minimum interval between two consecutive successful transactions in this category allowed.
Minimum interval between any two consecutive transactions (successful or not) in this category allowed.
Example request
{
"ac_id": 479823917,
"api_call_unique_identifier": "438574845790657485",
"client_id": 760131,
"transaction_amt_bn_lim": 1,
"hourly_amt_bn_lim": 1,
"hr24_amt_bn_lim": 1,
"weekly_amt_bn_lim": 1,
"monthly_amt_bn_lim": 1,
"annual_amt_bn_lim": 1,
"hourly_no_bn_lim": 1,
"hr24_no_bn_lim": 1,
"weekly_no_bn_lim": 1,
"monthly_no_bn_lim": 1,
"annual_no_bn_lim": 1,
"min_success_txn_interval_bn": 1,
"min_any_txn_interval_bn": 1,
"transaction_amt_ch_lim": 1,
"hourly_amt_ch_lim": 1,
"hr24_amt_ch_lim": 1,
"weekly_amt_ch_lim": 1,
"monthly_amt_ch_lim": 1,
"annual_amt_ch_lim": 1,
"hourly_no_ch_lim": 1,
"hr24_no_ch_lim": 1,
"weekly_no_ch_lim": 1,
"monthly_no_ch_lim": 1,
"annual_no_ch_lim": 1,
"min_success_txn_interval_ch": 1,
"min_any_txn_interval_ch": 1
}Response
Successful Response
Example response
{
"header": {
"error_desc": "success"
}
}