Verify Remitter
Verify Remitter
Postman Collection
URL
POST : /v1/service/dmt/remitter/verifyHeaders
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 the Remitter (Max Length: 10)
Mobile Number of the Remitter (Max Length: 10)
otpReference (String) Required
otpReference received in Update Remitter API Response (Max Length: 50)
otpReference received in Update Remitter API Response (Max Length: 50)
otp (String) Required
Received on Remitter Number (Max Length: 8)
Received on Remitter Number (Max Length: 8)
Request
Example Request
curl --location --request POST '/v1/service/dmt/remitter/verify' \
--header 'Content-Type: application/json' \
--header 'Authorization: Basic e3tsb2NfdXNlcn19Ont7bG9jX3Bhc3N9fQ==' \
--data-raw '{
"outletId" : "123456",
"mobile": "9999999999",
"otpReference": "05333435449384f646444737950668796a496f75435a44495a4c786b5371732b7a454257452b5662376137794338626e6e3538352f78794b2b57624179556253 48384370784b2b797236776c773772383d",
"otp": "883534"
}'
Response Samples
- SUCCESS
- FAILED
{
"code": "0x0200",
"message": "Remitter fetched successfully.",
"status": "SUCCESS"
"data":{
"mobile": "9999999999",
"firstName": "SUJEET",
"lastName": "KUMAR",
"address": "Maharashtra",
"city": "",
"state": "Maharashtra",
"pincode": "400050",
"limitPerTransaction": "5000.00",
"limitTotal": "25000.00",
"limitConsumed": "0.00",
"limitAvailable": "25000.00",
"limitIncreaseOffer": false,
"allowProfileUpdate": true,
"beneficiaries": []
}
}
{
"code": "0x0202",
"status": "FAILURE",
"message": "You have made 1 unsuccessful attempt(s). Maximum 3 attempts are allowed"
}
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 |