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
The current display name of the group tag you’d like to rename.
The new display name of the group tag.
Response
Indicates whether the call was successful. 1 if successful, 0 if not.
The contents of the Group Tag.
The group tag’s new display name.
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"
}
}