Transaction Limits - os-salahuddin/php8-cluster GitHub Wiki
#Per Transaction Limits
Get User Balance
This API provides Per transaction Limits information
URL
[GET] http://127.0.0.1:8282/api/v1/private/user/per-transaction-limits
Sample Response
{
"code": 200,
"messages": [
"Limit found"
],
"data": {
"send_money_min": 10,
"send_money_max": 50000,
"add_money_min": 1,
"add_money_max": 100000,
"request_money_min": 1,
"request_money_max": 100000,
"bank_transfer_min": 1,
"bank_transfer_max": 5000,
"bank_transfer": 100000,
"cc_bill_pay_min": 100,
"cc_bill_pay_max": 90000,
"send_money_criteria": [
"Verified user can send max. ৳50,000 on each transaction.",
"Daily limit on send money is ৳100,000.",
"Monthly limit on send money is ৳400,000."
]
}
}
Sample Response Format
Sample Response Format
Sample Response Format
Parameter | Type | Description | Always Present |
---|---|---|---|
code | Int | HTTP code (e.g., 200) | Yes |
messages | Array | Result messages | Yes |
data.cards | Array | List of available cards | Yes |
data.cards[].id | Int | Unique identifier for the card | Yes |
data.cards[].code | String | Card code | Yes |
data.cards[].name | String | Card name | Yes |
data.cards[].name_bn | String | Card name in Bangla | Yes |
data.cards[].alias | String | Alias of the card | Yes |
data.cards[].logo | String | URL of the card logo | Yes |
data.cards[].end_points | String | API endpoint for adding money using this card | Yes |
data.notices | Object | Notices related to add money transactions | Yes |
data.notices.non_beneficiary | String | Limit for users without added bank/MFS account | Yes |
data.notices.beneficiary | String | Limit for verified users per transaction | Yes |
data.notices.daily_limit | String | Daily limit on adding money | Yes |
data.notices.monthly_limit | String | Monthly limit on adding money | Yes |