Request Parameters
Name  | Requirement  | Description  | 
|---|---|---|
remitterType  | Mandatory  | Describes the Remitter Type  | 
incomeSourceType  | Mandatory  | Describes the Remitter source of income  | 
annualIncome  | Mandatory  | Describes the Remitter Salary  | 
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
}