post
https://api.instantpay.in/fi/remit/out/domestic/v2/remitterProfile
Request 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 |
Sample Request
curl --location 'https://api.instantpay.in/fi/remit/out/domestic/v2/remitterProfile' \
--header 'X-Ipay-Endpoint-Ip: 14.142.186.142' \
--header 'X-Ipay-Client-Id: YWY3OTAzYzNlM2ExZTJlOfh549Gzt+5IEcETrD5Yx+Q=' \
--header 'X-Ipay-Client-Secret: 82e4755d7c1cf636816addfe1460936d7b64612208df87f3000aa5b56fc926d1' \
--header 'X-Ipay-Auth-Code: 1' \
--header 'Content-Type: application/json' \
--data '{
"mobileNumber":"9971462546",
"isNEFT" : "YES",
"iftEnable" :"YES"
}'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: YWY3OTAzYzNlM2ExZTJlOfh549Gzt+5IEcETrD5Yx+Q=
X-Ipay-Client-Secret: 82e4755d7c1cf636816addfe1460936d7b64612208df87f3000aa5b56fc926d1
X-Ipay-Auth-Code: 1
Content-Type: application/json
Content-Length: 39
{
"mobileNumber":"9971462546",
"isNEFT" : "YES",
"iftEnable" :"YES"
}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": "Success",
"data": {
"mobileNumber": "9876543210",
"firstName": "Test",
"lastName": "TEST",
"city": "Faridabad",
"pincode": "121009",
"limitPerTransaction": 5000,
"limitTotal": "25000.00",
"limitConsumed": "0.00",
"limitAvailable": "25000.00",
"limitDetails": {
"maximumDailyLimit": "25000.00",
"consumedDailyLimit": "0.00",
"availableDailyLimit": "25000.00",
"maximumMonthlyLimit": "25000.00",
"consumedMonthlyLimit": "0.00",
"availableMonthlyLimit": "25000.00"
},
"beneficiaries": [
{
"id": "9a1a15fd622b1af7eebf4acc305e1a85",
"name": "Test",
"account": "07160150991234",
"ifsc": "ICIC0000716",
"bank": "ICICI BANK LIMITED",
"beneficiaryMobileNumber": "8860622709",
"verificationDt": "2025-02-25 11:13:33"
},
],
"isTxnOtpRequired": true,
"isTxnBioAuthRequired": false,
"isImpsAllowed": true,
"isNeftAllowed": true,
"isFaceAuthAvailable": true,
"validity": "2025-12-16 16:23:36",
"referenceKey": "gtW8UnSNXvID3SdbWkWTQ6WnTfUMUMKYIhZkX/ACqBAyaAa3a8sU6/AFas0PFwH/",
"pidOptionWadh": "E0jzJ/P8UopUHAieZn8CKqS4WPMi5ZSYXgfnlfkWjrc="
},
"timestamp": "2025-12-16 16:08:38",
"ipay_uuid": "h000a09b220d-665b-4db7-a081-7d3d8116044b-Xgf5E3LoQPqK",
"orderid": null,
"environment": "LIVE",
"internalCode": "null"
}
