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 Client Secret | M | Y |
X-Ipay-Endpoint-Ip | String | End Customer IP Address | M | Y |
Name | Type | Requirement | Description |
---|
ipayId | String | Mandatory | Unique transaction id generated in Instantpay's system |
curl --location 'https://api.instantpay.in/cards/brand/resend' \
--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}}' \
--data '{
"ipayId" : "DQC012313912004910"
}'
POST /cards/brand/resend HTTP/1.1
Host: api.instantpay.in
Accept: application/json
Content-Type: application/json
X-Ipay-Auth-Code: 1
X-Ipay-Client-Id: YWY3OTAzYzNlM2ExZTJlOX923SyPZlQWg5sCmZbpfcw=
X-Ipay-Client-Secret: 6f3d58493d8585d2d6dffb0225fc117129071c7411a5c56d77fc0514304353cb
X-Ipay-Endpoint-Ip: 45.115.105.205
Content-Length: 42
{
"ipayId" : "DQC012313912004910"
}
Parameter Name | Type | Description |
---|
statuscode | String | InstantPay StatusCode |
actcode | String | Action Code |
status | String | Status message |
data | String | Response Data(if Present) |
timestamp | String | Response time(YYYY-MM-DD HH:||:SS) |
ipay_uuid | String | Request reference number |
orderid | String | Transaction Id(if transaction otherwise it is null) |
environment | String | Live/Sandbox |
internalCode | String | it will be null |
{
"statuscode": "TXN",
"actcode": null,
"status": "Transaction Successful",
"data": null,
"timestamp": "2023-05-19 13:59:42",
"ipay_uuid": "h0059933f8e6-1d8b-45f2-a844-59b65b8cb6a7",
"orderid": null,
"environment": "LIVE",
"internalCode": null
}