This API can be used to intiate a fund transfer transaction.
Request
Access Token received from Generate Token method
Body Params application/json
Beneficiary Mobile Number
Beneficiary Account Number
Transfer Amount (in Rs.) {Positive integers only}
Transfer Mode (Supported - IMPS, NEFT and RTGS)
Unique Reference Id for backtracking the transaction
Assigned Merchant Id at the time of onboarding
{
"name": "Rajesh Sharma",
"email": "sharma.rajesh@outlook.in",
"phone": "9876543210",
"bankAccount": "90000900009000",
"ifsc": "UTIB0000001",
"amount": "10",
"paymentMode": "IMPS",
"referenceId": 508050754416,
"merchantId": "08810816"
}
Request samples
curl --location --request POST 'https://api.infydigi.com/v1/merchant-service/fund-transfer' \
--header 'Authorization;' \
--header 'Content-Type: application/json' \
--data-raw '{
"name": "Rajesh Sharma",
"email": "sharma.rajesh@outlook.in",
"phone": "9876543210",
"bankAccount": "90000900009000",
"ifsc": "UTIB0000001",
"amount": "10",
"paymentMode": "IMPS",
"referenceId": 508050754416,
"merchantId": "08810816"
}'
Responses
application/json Echoed from Request for Validation
{
"txnId": "1637777882637",
"utr": "9283091230IBN",
"statusCode": "200",
"status": "PROCESSED",
"description": "TRANSFER_COMPLETED_SUCCESSFULLY",
"referenceId": "508050754415"
}
Modified at 2025-01-18 18:09:59