POST
/
api
/
rename_group_tag
/
curl --location --request POST 'https://api.explo.co/api/rename_group_tag/' \
--header 'Content-Type: application/json' \
--header 'Explo-Authorization: Token <token>' \
--data-raw '{
    "name": "tag",
    "new_name": "new tag"
}'
{
  "success": 1,
  "group_tag": {
    "name": "new tag"
  }
}
This endpoint renames a group tag.

Body

name
string
The current display name of the group tag you’d like to rename.
new_name
string
The new display name of the group tag.

Response

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