Name | Type | Descrip[tion | 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 |
Name | Type | Description |
---|
mobile | String | Mobile Number of Remitter |
firstName | String | First Name of the Remitter |
lastName | String | last name of the Remitter |
pinCode | String | Pin code of the Remitter |
curl --location --request PUT 'https://api.instantpay.in/fi/remit/out/domestic/remitterUpdate' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--header 'X-Ipay-Auth-Code: {{authCode}}' \
--header 'X-Ipay-Client-Id: {{clientId}}' \
--header 'X-Ipay-Client-Secret: {{clientSecret}}' \
--header 'X-Ipay-Endpoint-Ip: {{endPointIP}}' \
--header 'X-Ipay-Outlet-Id: {{outletId}}' \
--data-raw '{
"mobile":"7428585742",
"firstName" : "Sample First Name",
"lastName" : "Sample Last Name"
"pinCode":"110044"
}'
PUT /fi/remit/out/domestic/remitterUpdate HTTP/1.1
Host: api.instantpay.in
Accept: application/json
X-Ipay-Auth-Code: {{authCode}}
X-Ipay-Client-Id: {{clientId}}
X-Ipay-Client-Secret: {{clientSecret}}
X-Ipay-Endpoint-Ip: {{endPointIP}}
X-Ipay-Outlet-Id:{{outletId}}
Content-Type: application/json
{
"mobile":"7428585742",
"firstName" : "Sample First Name",
"lastName" : "Sample Last Name"
"pinCode":"110044"
}'
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 |
{
"statuscode": "OTP",
"actcode": null,
"status": "OTP sent to remitter mobile number XXXXXXX742",
"data": {
"otpReference": "76474543436a43344397432634744e6d7a3874462b536a78453d"
},
"timestamp": "2022-07-28 10:55:00",
"ipay_uuid": "h00696e24687-a8bd-7e08dfddb672-03908e9bfede",
"orderid": null,
"environment": "LIVE",
}