Resend Virtual Card

The API will be used to resend virtual gift card.

📘

Header Parameters

For Header references Click here

Query Params

NameDescription
kitnumberpass the kitnumber of the card in the url body

Sample Request

curl --location --request GET 'https://api.instantpay.in/cards/gift/resend/{{kitNumber}}' \
--header 'X-Ipay-Auth-Code: {{authCode}}' \
--header 'X-Ipay-Client-Id: {{clientId}}' \
--header 'X-Ipay-Client-Secret: {{clientSecret}}' \
--header 'X-Ipay-Endpoint-Ip: {{endPointIP}}' \
GET /cards/gift/resend/{{kitNumber}} HTTP/1.1
Host: api.instantpay.in
X-Ipay-Auth-Code: {{authCode}}
X-Ipay-Client-Id: {{clientId}}
X-Ipay-Client-Secret: {{clientSecret}}
X-Ipay-Endpoint-Ip: {{endPointIP}}

Response Parameters

NameTypeDescription
statuscodeStringInstantPay Status Code
actcodeStringAction Code
statusStringStatus Message
dataArrayResponse Data (If Present)
timestampStringCurrent Time (YYYY-MM-DD HH:II:SS)
ipay_uuidStringRequest Reference Number
orderidStringTransaction Id ( If transaction otherwise it is null )
environmentStringLive

Sample Response

{
    "statuscode": "TXN",
    "actcode": null,
    "status": "Virtual Gift Card resent successfully",
    "data": null,
    "timestamp": "2022-04-11 15:54:23",
    "ipay_uuid": "h00596096f49-baab-4ad3-a34d-5f3025680403",
    "orderid": null,
    "environment": "LIVE",

}

📘

Info :

The User will virtual card details allocated to the kit number passed in the URL.

Language
URL
Click Try It! to start a request and see the response here!