Track Link

Header Parameters

NameTypeDescriptionMandatory(M),Optional(O)Provided by INSTANTPAY(Y/N)
X-Ipay-Auth-CodeStringAuth Code -1 (Fixed)MY
X-Ipay-Client-IdStringUnique Client IdMY
X-Ipay-Client-SecretStringUnique Client SecretMY
X-Ipay-Endpoint-IpStringEnd Customer IP AddressMY

Request Parameters

NameRequirementDescription
linkIdMandatoryGenerated link id of the payment transactions.

Sample Request

curl --location --request GET 'http://127.0.0.1:8000/payments/payout/link/track/65704add83911e52b70ebcbc' \
--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: 125.0.0.1' \
--header 'Content-Type: application/json' \
--data '
'
GET /payments/payout/link/track/65704add83911e52b70ebcbc HTTP/1.1
Host: 127.0.0.1:8000
X-Ipay-Auth-Code: 1
X-Ipay-Client-Id: YWY3OTAzYzNlM2ExZTJlOfh549Gzt+5IEcETrD5Yx+Q=
X-Ipay-Client-Secret: 679db35f926b8d0240a8c0d28729528ee8e6d5effa5fa0b20c04454004d2d825
X-Ipay-Endpoint-Ip: 125.0.0.1
Content-Type: application/json
Content-Length: 1



Response Parameters

Parameter NameTypeDescription
statuscodeStringInstantPay StatusCode
actcodeStringAction Code
statusStringStatus message
dataStringResponse Data(if Present)
timestampStringResponse time(YYYY-MM-DD HH:||:SS)
ipay_uuidStringRequest reference number
orderidStringTransaction Id(if transaction otherwise it is null)
environmentStringLive/Sandbox
internalCodeStringit will be null

Sample Response

{
    "statuscode": "TXN",
    "actcode": null,
    "status": "Transaction Successful",
    "data": {
        "status": "CLAIMED",
        "amount": 120.11,
        "linkActivity": [
            {
                "status": "Payout link created",
                "activityAt": "2023-12-12 14:51:25"
            },
            {
                "status": "Payout link notification sent to 8430454547 and [email protected]",
                "activityAt": "2023-12-12 14:51:26"
            },
            {
                "status": "Beneficiary verification successful",
                "activityAt": "2023-12-12 14:51:31",
                "orderId": "1231212092131KTMDF",
                "accountType": "ACCOUNT",
                "accountNumber": "7770007428585742",
                "accountIfsc": "YESB0CMSNOC"
            },
            {
                "status": "Link Claimed successfully",
                "activityAt": "2023-12-12 14:51:31",
                "orderId": "1231212092131FDBUT",
                "accountType": "ACCOUNT",
                "accountNumber": "7770007428585742",
                "accountIfsc": "YESB0CMSNOC"
            }
        ]
    },
    "timestamp": "2023-12-14 16:42:49",
    "ipay_uuid": "h0009ad8a2eb-7790-4fe2-a9af-8cdb732d668c-WbrjDVgsp8oy",
    "orderid": null,
    "environment": "PRODUCTION",
    "internalCode": null
}
Language
Click Try It! to start a request and see the response here!