Remitter Limits
Remitter Limits
Postman Collection
URL
GET : /v1/service/dmt/remitter/limitsHeaders
Content-Type (String) required
application/json
application/json
Authorization (String) required
Basic Auth
Basic Auth
Accept (String) required
application/json
application/json
Body Params
outletId (String) Required
Merchant unique ID (You will get outletId from Agent Onboarding API) (Max Length: 10)
Merchant unique ID (You will get outletId from Agent Onboarding API) (Max Length: 10)
mobile (String) Required
Mobile Number of remitter (Max Length: 10)
Mobile Number of remitter (Max Length: 10)
Request
Example Request
curl --location --request GET '/v1/service/dmt/remitter/limits' \
--header 'Content-Type: application/json' \
--header 'Authorization: Basic e3tsb2NfdXNlcn19Ont7bG9jX3Bhc3N9fQ==' \
--data-raw '{
"outletId" : "123456",
"mobile": "9999999999"
}'
Response Samples
- SUCCESS
- FAILED
{
"code": "0x0200",
"message": "Record fetched successfully.",
"status": "SUCCESS",
"data":{
"limitPerTransaction": "5000.00",
"limitTotal": "25000.00",
"limitConsumed": "45.00",
"limitAvailable": "24955.00",
"limitDetails": {
"maximumDailyLimit": "25000.00",
"consumedDailyLimit": "12.00",
"availableDailyLimit": "24988.00",
"maximumMonthlyLimit": "25000.00",
"consumedMonthlyLimit": "45.00",
"availableMonthlyLimit": "24955.00"
}
}
}
{
"code": "0x0202",
"status": "FAILURE",
"message": "Invalid remitter mobile no"
}
Response Code
| Status Code | Status | Message |
|---|---|---|
| 0x0200 | SUCCESS | TRANSACTION SUCCESSFULL |
| 0x0201 | UNAUTHORIZED | UNAUTHORIZED USER |
| 0x0202 | FAILURE | FAILURE USER |
| 0x0203 | MISSING_PARAMETER | MISSING PARAMETER |
| 0x0204 | CONNECTION_TIMEOUT | CONNECTION TIMEOUT |
| 0x0205 | SOMETHING_WENT_WRONG | SOMETHING WENT WRONG |
| 0x0206 | PENDING | TRANSACTION PENDING |
| 0x0208 | 2FA | TWO FACTOR AUNTHENTICATION |