delete https://api.instantpay.in/contacts/tag
Keep your data organised and relevant with Instantpay's Delete Tag API. It's vital for a streamlined dataset. Our API helps businesses to remove unused tags. It reduces clutter and improves data accuracy.
Integrating the Delete Tag API will keep your data classification intact. It will ensure that only relevant information is retained. It helps you make better decisions and work more efficiently. You can focus on relevant data.
The Delete Tag API is perfect for businesses with large datasets. It is essential for better data management and cleaner, more organised records.
Request Parameters
Name | Type | Requirement | Description |
---|---|---|---|
tagId | String | Mandatory | Tag id |
Sample Request
curl --location --request DELETE 'https://api.instantpay.in/contacts/tag' \
--header 'X-Ipay-Auth-Code: {{authCode}}' \
--header 'X-Ipay-Client-Id: {{clientId}}' \
--header 'X-Ipay-Client-Secret: {{clientSecret}}' \
--header 'X-Ipay-Endpoint-Ip: {{endPointIP}}' \
--header 'Content-Type: application/json' \
--data '{
"tagId" : "6422ae859f43afe1ee0319d6"
}'
DELETE /contacts/tag 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}}
Content-Type: application/json
Content-Length: 44
{
"tagId" : "6422ae859f43afe1ee0319d6"
}
Response Parameters
Name | Type | Description |
---|---|---|
statuscode | String | InstantPay Status Code |
actcode | String | Action Code |
status | String | Status Message |
data | Array | Response Data (If Present) |
timestamp | String | Response time (YYYY-MM-DD HH:II:SS) |
ipay_uuid | String | Request reference number |
orderid | String | Transaction Id ( If transaction otherwise it is null ) |
enviroment | String | Live/Sandbox |
internalCode | String | It will be null |
{
"statuscode": "TXN",
"actcode": null,
"status": "Tag Deleted successfully",
"data": null,
"timestamp": "2023-05-04 15:13:27",
"ipay_uuid": "h0069915e681-b17b-427c-a47a-cf0c59fbf119",
"orderid": null,
"environment": "LIVE",
"internalCode": null
}