Skip to main content
POST
/
api
/
delete_group_tag
curl --location --request POST 'https://api.explo.co/api/delete_group_tag/' \
--header 'Content-Type: application/json' \
--header 'Explo-Authorization: Token <token>' \
--data-raw '{
		"name": "tag"
}'
{
  "success": 1
}

Documentation Index

Fetch the complete documentation index at: https://docs.explo.co/llms.txt

Use this file to discover all available pages before exploring further.

This endpoint deletes an existing Group Tag.

Body

name
string
required
This is the display name of the group tag to delete. An error will be thrown if the group tag does not exist.

Response

success
number
Indicates whether the call was successful. 1 if successful, 0 if not.
curl --location --request POST 'https://api.explo.co/api/delete_group_tag/' \
--header 'Content-Type: application/json' \
--header 'Explo-Authorization: Token <token>' \
--data-raw '{
		"name": "tag"
}'
{
  "success": 1
}