post https://api.instantpay.in/fi/remit/out/nepal/remitterUpdate
Request Parameters
Name | Requirement | Description |
---|---|---|
remitterType | Mandatory | Describes the Remitter Type 1 - Salaried 2 - Self Employed including Professional 3 - Farmer 4 - Housewife. Minor customer is not allowed. |
incomeSourceType | Mandatory | Describes the Remitter source of income 1 - Govt 2 - Public sector 3 - Private Sector 4 - Business 5 - Agriculture 6 - Dependent |
annualIncome | Mandatory | Describes the Remitter Salary 1 - Rs. 0.00 lacs to Rs. 2.00 Lacs 2 - Rs. 2.00 Lacs to Rs. 5 Lacs 3 - Rs. 5 Lacs to Rs. 10 Lacs 4 - More than Rs. 10 Lacs |
remitterId | Mandatory | Remitter Id of the Remitter |
Sample Request
curl --location --request POST 'https://api.instantpay.in/fi/remit/out/nepal/remitterUpdate' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--header 'X-Ipay-Auth-Code: 1' \
--header 'X-Ipay-Client-Id: YWY3OTAzYzNlM2ExZTJlOfh549Gzt+5IEcETrD5Yx+Q=' \
--header 'X-Ipay-Client-Secret: 679db35f926b8d0240a8c0d28729528ee8e6d5effa5fa0b20c04454004d2d825' \
--header 'X-Ipay-Endpoint-Ip: 45.115.105.205' \
--header 'X-Ipay-Outlet-Id: 72762' \
--data-raw '{
"remitterType": 1,
"incomeSourceType": 3,
"annualIncome": 2,
"remitterId": "675738"
}'
POST /fi/remit/out/nepal/remitterUpdate HTTP/1.1
Host: api.instantpay.in
Accept: application/json
Content-Type: application/json
X-Ipay-Auth-Code: 1
X-Ipay-Client-Id: YWY3OTAzYzNlM2ExZTJlOfh549Gzt+5IEcETrD5Yx+Q=
X-Ipay-Client-Secret: 679db35f926b8d0240a8c0d28729528ee8e6d5effa5fa0b20c04454004d2d825
X-Ipay-Endpoint-Ip: 45.115.105.205
X-Ipay-Outlet-Id: 72762
Content-Length: 210
{
"remitterType": 1,
"incomeSourceType": 3,
"annualIncome": 2,
"remitterId": "675738"
}
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:MM:SS) |
ipay_uuid | String | Request reference number |
orderid | String | Transaction Id ( If transaction otherwise it is null ) |
enviroment | String | Live/Sandbox |
Sample Response
{
"statuscode": "TXN",
"actcode": null,
"status": "Transaction Successful",
"data": null,
"timestamp": "2023-01-03 11:20:46",
"ipay_uuid": "h00698222a34-ce2c-4670-bb53-8386102793d5",
"orderid": null,
"environment": "LIVE",
"internalCode": null
}