post https://dextox.in/api/payout/v8/Payout
Initiate payouts to your customers, vendors and employees directly from your Payment online Pay account. Money can be sent to bank accounts (IMPS / NEFT / RTGS). This API cannot be used for DMT use case.
Header Parameters
| Name | Type | Description |
|---|---|---|
| Content-Type | String | Application/Json |
| Accept | String | Application/Json |
| X-Qro-ApiKey | String | Provided By Dextox |
| X-Qro-UserId | String | Provided By Dextox |
Request Parameter
| Param Name | Param Type | Is Mandatory | Description |
|---|---|---|---|
| bene_name | string | YES | Account Holder Name |
| bene_acc | String | YES | Account Number of End User |
| bene_ifsc | String | YES | IFSC Code |
| bene_mobile | String | YES | Mobile Number of End User |
| bene_email | String | YES | End User email |
| bene_acc_type | String | YES | This will be 'saving' |
| bene_bank_name | String | YES | |
| mode | String | YES | IMPS,NEFT,RTGS |
| amount | String | YES | Amount to be transferred |
| refid | String | YES | Unique Transaction Id |
| remarks | String | YES | Remarks |
| type | String | YES | This will be 'Vendor' |
Sample Request
{
"mode": "IMPS",
"remarks": "Test",
"amount": "2",
"type": "vendor",
"bene_name": "Arvind Choudhary",
"bene_mobile": "XXXXXXXX",
"bene_email": "[email protected]",
"bene_acc": "XXXXXXXX",
"bene_ifsc": "XXXXXXXX",
"bene_acc_type": "saving",
"refid": "TXN123456789",
"bene_bank_name": null
}Sample Response
{
"status":true,
"statuscode":"200",
"responsecode":1,
"message":"Transaction intiate successfully",
"data":{
"status":1//1-SUCCESS,0-REFUNDED/FAILED,2-PENDING and pending on other status than this
}
}