get https://api.instantpay.in/fi/remit/out/nepal/staticData
Sample Request
curl --location --request GET 'https://api.instantpay.in/fi/remit/out/nepal/staticData' \
--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: 14.142.186.14' \
--header 'X-Ipay-Outlet-Id: 72762' \
--header 'Content-Type: application/json' \
--data-raw '{
    "type":"IDType"
}'curl --location --request GET 'https://api.instantpay.in/fi/remit/out/nepal/staticData' \
--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: 14.142.186.14' \
--header 'X-Ipay-Outlet-Id: 72762' \
--header 'Content-Type: application/json' \
--data-raw '{
    "type":"IDType"
}'Request Parameters
| Parameters | Requirement | Description | 
|---|---|---|
| type | Mandatory | Available Types are : Gender, Nationality, IDType, IncomeSource, Relationship, PaymentMode, RemittanceReason | 
Sample Response
{
    "statuscode": "TXN",
    "actcode": null,
    "status": "Transaction Successful",
    "data": [
        {
            "label": "Aadhaar Card",
            "value": "Aadhaar Card"
        },
        {
            "label": "Indian Driving License",
            "value": "Indian Driving License"
        },
        {
            "label": "Nepalese Citizenship",
            "value": "Nepalese Citizenship"
        },
        {
            "label": "Nepalese Passport",
            "value": "Nepalese Passport"
        }
    ],
    "timestamp": "2022-10-11 16:30:05",
    "ipay_uuid": "h00697799e2b-c1c2-4414-bab2-74f66d3c4326",
    "orderid": null,
    "environment": "LIVE",
    "internalCode": null
}Response Parameters
| Parameter Name | Type | Description | 
|---|---|---|
| statuscode | String | InstantPay Status Code | 
| actcode | String | Action Code | 
| status | String | Status message | 
| data | Array | Response Data (If Present) | 
| timestamp | String | Response 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/Sandbox | 
Info :For API Headers Click Here
