post
https://api.instantpay.in/fi/remit/out/domestic/v2/remitterRegistration-1
Headers Parameters
| 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 |
Request Parameters
| Parameters | Type | Description |
|---|---|---|
| mobileNumber | String | Remitter Mobile Number |
| otp | String | OTP received on Mobile Number |
| referenceKey | String | referenceKey received in Remitter Profile response |
Sample Request
POST /fi/remit/out/domestic/v2/remitterProfile HTTP/1.1
Host: api.instantpay.in
X-Ipay-Endpoint-Ip: 14.142.186.142
X-Ipay-Client-Id: {{clinetId}}
X-Ipay-Client-Secret: {{clientSecret}}
X-Ipay-Auth-Code: 1
Content-Type: application/json
Content-Length: 39
{
"mobileNumber":"9876543210",
"isNEFT" : "YES",
"iftEnable" :"YES"
}POST /fi/remit/out/domestic/v2/remitterRegistrationVerify HTTP/1.1
Host: api.instantpay.in
X-Ipay-Endpoint-Ip: 14.142.186.142
X-Ipay-Hash-Check: OFF
X-Ipay-Client-Id: {{clientId}}
X-Ipay-Client-Secret: {{clientSecret}}
X-Ipay-Auth-Code: 1
User-Agent: {{userAgent}}
Content-Type: application/json
Content-Length: 83
{
"mobileNumber":"9876543210",
"otp" : 472862,
"referenceKey": "null"
}Response Parameters
| 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 |
Sample Response
{
"statuscode": "TXN",
"actcode": null,
"status": "Transaction Successful",
"data": {
"referenceID": "5a446e70514f41575a74654a6e49474d634f7057702b747a686c65562f637a54765872666b487437757071306a34364542.v2.ufheuw98484fhhf82enf54a6e49474d634f"
},
"timestamp": "2024-05-31 11:05:03",
"ipay_uuid": "h0009c2c2266-9e58-461d-bb88-25a36363d0f3-s27798VjPK8V",
"orderid": null,
"environment": "LIVE"
}