post
https://api.instantpay.in/user/outlet/signup/addBankAccount
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
Header ParametersFor Header reference Click here
Request Parameters
| Parameter Key | Requirement | Descriptions |
|---|---|---|
| outletId | Mandatory | Outlet Id of the Merchant |
| bankAccountNo | Mandatory | Bank Account of the Merchant |
| bankIfsc | Mandatory | Ifsc code |
| latitude | Mandatory | Location Latitude of the Merchant |
| longitude | Mandatory | Location Longitude of the Merchant |
Sample Request
curl --location 'https://api.instantpay.in/user/outlet/signup/addBankAccount' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--header 'X-Ipay-Auth-Code: 1' \
--header 'X-Ipay-Client-Id: {{clientId}}' \
--header 'X-Ipay-Client-Secret: {{clientSecret}}' \
--header 'X-Ipay-Endpoint-Ip: {{endpointIP}}' \
--data-raw '{
"outletId" : "12345",
"bankAccountNo" : "26880100012345",
"bankIfsc" : "SBIN0005943",
"latitude" : "28.5094",
"longitude" : "77.2972"
}'POST /user/outlet/signup/addBankAccount HTTP/1.1
Host: api.instantpay.in
Accept: application/json
Content-Type: application/json
X-Ipay-Auth-Code: 1
X-Ipay-Client-Id: {{clientId}}
X-Ipay-Client-Secret: {{clientSecret}}
X-Ipay-Endpoint-Ip: {{endpointIP}}
Content-Length: 423
{
"outletId" : "12345",
"bankAccountNo" : "26880100012345",
"bankIfsc" : "SBIN0005943",
"latitude" : "28.5094",
"longitude" : "77.2972"
}Response Parameters
| Parameter Key | Type | Description |
|---|---|---|
| statuscode | String | Instantpay Status Code |
| actcode | String | Action code |
| status | String | Staus Message |
| data | String | Response Data (If Present) |
| timestamp | String | Response time (YYYY-MM-DD HH:MM:SS) |
| ipay_uuid | String | Request reference number |
| orderid | String | Transaction Id ( If transaction otherwise it is null ) |
| environment | String | Live/Sandbox |
Sample Response
{
"statuscode": "TXN",
"actcode": null,
"status": "Bank Account Added Successfully",
"data": null,
"timestamp": "2026-09-17 18:17:16",
"ipay_uuid": "h000a2c484b1-6f4e-45bb-8416-bd57ebf3ceef-H9L9XEXXvt5J",
"orderid": null,
"environment": "SANDBOX",
"internalCode": null
}Sample Response (If name doesn't match)
{
"statuscode": "ERR",
"actcode": null,
"status": "Your name in the bank account must match with Shahbaz Ali. Please trying linking another bank account or reach out to Customer Service.",
"data": null,
"timestamp": "2026-09-17 18:16:46",
"ipay_uuid": "h000a2c48484-45e8-420c-9ab6-2e5cf04bc29c-IMO64KC68R5u",
"orderid": null,
"environment": "SANDBOX",
"internalCode": null
}
