List Business

Request Parameters

NameTypeRequirementDescription
gcIdStringMandatoryContact Id(You will get from Add Contact Response)

Sample Request

curl --location --request GET 'https://api.instantpay.in/contacts/business' \
--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 '{
    "gcId":"64466fd613d5c829a60e4cdf"
}'
GET /contacts/business HTTP/1.1
Host: api.instantpay.in
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: 41

{
    "gcId":"64466fd613d5c829a60e4cdf"
}

Response Parameter

Parameter NameTypeDescription
statuscodeStringInstantpay status code
actcodeStringAction code
statusStringStatus message
dataArrayResponse data(if Present)
timestampStringResponse time (YYYY-MM-DD HH:II:SS)
ipay_uuidStringRequest reference number
orderidStringTransaction Id ( If transaction otherwise it is null )
environmentStringLive/Sandbox
{
    "statuscode": "TXN",
    "actcode": null,
    "status": "Transaction Successful",
    "data": [
        {
            "_id": "645390ff45c523e177063342",
            "gcId": "645383ba4acec95a32089822",
            "pan": "CHIPG0335D",
            "panVerified": true,
            "cin": "L17110MH1973PLC019786",
            "cinVerified": true,
            "gstin": "29GGGGG1324R1Z9",
            "gstinVerified": true,
            "tan": "djfjf",
            "tanVerified": true,
            "udyam": "343nefnerfj",
            "udyamVerified": true,
            "updated_at": "2023-05-04T11:03:27.688000Z",
            "created_at": "2023-05-04T11:03:27.688000Z"
        }
    ],
    "timestamp": "2023-05-04 16:35:46",
    "ipay_uuid": "h006991603f2-12a3-4452-9614-139d45cb7586",
    "orderid": null,
    "environment": "LIVE",
    "internalCode": null
}
Language
Click Try It! to start a request and see the response here!