Remitter Update

Request Parameters

NameRequirementDescription
remitterTypeMandatoryDescribes the Remitter Type
1 - Salaried
2 - Self Employed including
Professional
3 - Farmer
4 - Housewife.
Minor customer is not allowed.
incomeSourceTypeMandatoryDescribes the Remitter source of income
1 - Govt
2 - Public sector
3 - Private Sector
4 - Business
5 - Agriculture
6 - Dependent
annualIncomeMandatoryDescribes 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
remitterIdMandatoryRemitter 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

NameTypeDescription
statuscodeStringInstantPay Status Code
actcodeStringAction Code
statusStringStatus Message
dataArrayResponse Data (If Present)
timestampStringCurrent time (YYYY-MM-DD HH:MM:SS)
ipay_uuidStringRequest reference number
orderidStringTransaction Id ( If transaction otherwise it is null )
enviromentStringLive/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
}
Language
Click Try It! to start a request and see the response here!