Name | Type | Description | 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 | Mandatory (M) , Optional (O) | Description |
---|
remitterMobileNumber | String | M | Remitter Mobile Number |
amount | String | M | Amount to be Transferred |
referenceKey | String | M | Reference Key received in Remitter Profile response |
curl --location 'https://api.instantpay.in/fi/remit/out/domestic/v2/generateTransactionOtp' \
--header 'X-Ipay-Endpoint-Ip: 14.142.186.142' \
--header 'X-Ipay-Client-Id: YWY3OTAzYzNlxxxxxxxxxxxxxcETrD5Yx+Q=' \
--header 'X-Ipay-Client-Secret: 82e4755d7c1cf63xxxxxxxxxxxxxxxxxxxx7f3000aa5b56fc926d1' \
--header 'X-Ipay-Auth-Code: 1' \
--header 'X-Ipay-Outlet-Id: 72762' \
--header 'Content-Type: application/json' \
--data '{
"remitterMobileNumber": "9876543210",
"amount": "10.00",
"referenceKey": "eQJgp/xnEmxgcECVKTeqBveQqekPO9zDdnsHJGldvztYBQEByrUoAdYpbm5hDD5X"
}'
POST /fi/remit/out/domestic/v2/generateTransactionOtp HTTP/1.1
Host: api.instantpay.in
X-Ipay-Endpoint-Ip: 14.142.186.142
X-Ipay-Client-Id: YWY3OTAzYzNlxxxxxxxxxxxxxxEcETrD5Yx+Q=
X-Ipay-Client-Secret: 82e4755d7c1cf6368xxxxxxxxxxxxxxxxxxxxf87f3000aa5b56fc926d1
X-Ipay-Auth-Code: 1
X-Ipay-Outlet-Id: 72762
Content-Type: application/json
Content-Length: 155
{
"remitterMobileNumber": "9876543210",
"amount": "10.00",
"referenceKey": "eQJgp/xnEmxgcECVKTeqBveQqekPO9zDdnsHJGldvztYBQEByrUoAdYpbm5hDD5X"
}
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 Successfully sent",
"data": {
"validity": "2024-11-05 14:07:22",
"referenceKey": "oyG2B/5LE7E+T918OByESTgxHJ78uTvv+hrzwRjAzs4C2C5MTFv5K2WUlnvePTz+.v2.3738a4095d25300b-213b-4e24-be9a-d58d64cc9e80",
"isTxnBioAuthRequired": false
},
"timestamp": "2024-11-05 13:07:27",
"ipay_uuid": "h0009d6a25b4-4b92-449b-908c-52a9967e9ea9-01rqAeeVGWcp",
"orderid": null,
"environment": "LIVE",
"internalCode": null
}