Fund Transfer
Fund Transfer
Postman Collection
URL
POST : /v1/service/dmt/transferHeaders
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)
remitterMobile (String) Required
Mobile Number of Remitter (Max Length: 10)
Mobile Number of Remitter (Max Length: 10)
beneficiaryId (String) Required
You will get Beneficary details in the Remitter Details API (Max Length: 25)
You will get Beneficary details in the Remitter Details API (Max Length: 25)
amount (String) Required
Amount to be transferred (Max Length: 4)
Amount to be transferred (Max Length: 4)
latitude (String) Required
Current location latitude (Max Length: 8)
Current location latitude (Max Length: 8)
longitude (String) Required
Current location longitude (Max Length: 8)
Current location longitude (Max Length: 8)
clientRefId (String) Required
Unique Reference number (Max Length: 20)
Unique Reference number (Max Length: 20)
Request
Example Request
curl --location --request POST '/v1/service/dmt/transfer' \
--header 'Content-Type: application/json' \
--header 'Authorization: Basic e3tsb2NfdXNlcn19Ont7bG9jX3Bhc3N9fQ==' \
--data-raw '{
"outletId" : "123456",
"remitterMobile": "9999999999",
"beneficiaryId":"7c4cd1ab13de8728b70f3982",
"amount":1,
"latitude":"26.862410",
"longitude":"81.020348",
"clientRefId":"order13d7259e6h925"
}'
Response Samples
- SUCCESS
- FAILED
{
"code": "0x0200",
"message": "Transaction Successful",
"status": "SUCCESS",
"data":{
"orderRefId": "DMT4133120396AFA7",
"clientRefId": "order13d7259e6ddh925",
"amount": "1.00",
"utr": "304521954123",
"remitterMobile": "9999999999",
"beneficiaryName": "SUJEETKUMAR",
"beneficiaryAccount": "12345678901234",
"beneficiaryIFSC": "BARB0AANTIY"
}
}
{
"code": "0x0202",
"status": "FAILURE",
"message": {
"clientRefId": [
"The client ref id has already been taken."
]
}
}
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 |