Name | Type | Description | Mandatory (M) , Optional (O) | Provided by INSTANTPAY (Y/N) |
---|
X-Ipay-Auth-Code | String | Auth Code - 1 (Fixed) | M | Y |
X-Ipay-Client-Id | String | Unique Client ID | M | Y |
X-Ipay-Client-Secret | String | Unique secret key | M | Y |
X-Ipay-Outlet-Id | String | Merchant unique ID | M | Y |
X-Ipay-Endpoint-Ip | String | End Customer IP Address | M | N |
Name | Type | Requirement | Description |
---|
remitterMobile | String | Mandatory | Remitter Mobile Number |
firstName | String | Mandatory | Full Name of Beneficiary |
ifsc | String | Mandatory | Bank IFSC code of Beneficiary |
accountNumber | String | Mandatory | Bank Account Number of Beneficiary |
curl --location --request POST 'https://api.instantpay.in/fi/remit/out/domestic/beneficiaryRegistration' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--header 'X-Ipay-Auth-Code: {{authCode}}' \
--header 'X-Ipay-Client-Id: {{clientId}}' \
--header 'X-Ipay-Client-Secret: {{clientSecret}}' \
--header 'X-Ipay-Endpoint-Ip: {{endPointIP}}' \
--header 'X-Ipay-Outlet-Id: {{outletId}}' \
--data-raw '{
"remitterMobile":"7428585742",
"firstName":"Sample First Name",
"ifsc":"YESB0CMSNOC",
"accountNumber":"7770007428585742"
}'
POST /fi/remit/out/domestic/beneficiaryRegistration HTTP/1.1
Host: api.instantpay.in
Accept: application/json
X-Ipay-Auth-Code: {{authCode}}
X-Ipay-Client-Id: {{clientId}}
X-Ipay-Client-Secret: {{clientSecret}}
X-Ipay-Endpoint-Ip: {{endPointIP}}
X-Ipay-Outlet-Id:{{outletId}}
Content-Type: application/json
{
"remitterMobile":"7428585742",
"firstName":"Sample First Name",
"ifsc":"YESB0CMSNOC",
"accountNumber":"7770007428585742"
}
Name | Type | Description |
---|
statuscode | String | InstantPay Status Code |
actcode | String | Action Code |
status | String | Status Message |
data | Array | Response Data (If Present) |
timestamp | String | Current time (YYYY-MM-DD HH:II:SS) |
ipay_uuid | String | Request reference number |
orderid | String | Transaction Id ( If transaction otherwise it is null ) |
environment | String | Live |
{
"statuscode": "TXN",
"actcode": null,
"status": "Beneficiary details",
"data": {
"id": "acbbc3d5a5ee0ea34ef3960be05352bb",
"name": "Instantpay India Ltd",
"account": "98765433198",
"ifsc": "SBIN0000001",
"bank": "STATE BANK OF INDIA",
"branch": "KOLKATAMAIN",
"verificationDt": null
},
"timestamp": "2024-08-01 11:21:37",
"ipay_uuid": "h0009ca8e162-823e-4648-8ed4-78ca32612c74-iVA5zw9TLKsg",
"orderid": null,
"environment": "LIVE"
}