API Docs

Delete Tag

Delete single tag by :name using REST API endpoint: /api/v1/tags/:name

Example: If you want to delete tag with name "sample-tag".
Endpoint: /api/v1/tags/sample-tag

Request

Parameter Type Position # Description
apikey string Header Required Enter your 20-30 characters unique api key.
apisecret string Header Required Enter your 12-20 characters unique api secret.
Content-Type string Header Required application/json

Response

{
    "status": 200,
    "message": "ok",
    "data": {
        "rows_deleted": 1
    }
}
											
{
    "status": 404,
    "message": "Not found. Tag with specified name might already be deleted or doesn't exist.",
    "data": null
}