post http://qrologic.in/api/payout/v3/Payout
Initiate payouts to your customers, vendors and employees directly from your Qrologic 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 Qrologic |
X-Qro-UserId | String | Provided By Qrologic |
Request Parameters
Name | Type | 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 for alert |
bene_acc_type | String | Yes | This will be 'saving' |
bene_bank_name | String | No | |
mode | String | Yes | IMPS,NEFT,RTGS |
amount | String | Yes | Amount to be transferred |
refid | String | Yes | Your 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": "XXXXXXXX@gmail.com",
"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"
}