curl --location --request GET 'https://api.explo.co/api/group_tags/' \
--header 'Content-Type: application/json' \
--header 'Explo-Authorization: Token <token>'
{
"success": 1,
"group_tags": [
{
"name": "marketing"
},
{
"name": "designer"
},
{
"name": "engineers"
},
{
"name": "sales"
}
]
}
This endpoint gets all of your group tags. This list will be filtered to the group tags your API token has access to.
Response
Indicates whether the call was successful. 1 if successful, 0 if not.
The contents of each group tag object
The group tag’s display name.
curl --location --request GET 'https://api.explo.co/api/group_tags/' \
--header 'Content-Type: application/json' \
--header 'Explo-Authorization: Token <token>'
{
"success": 1,
"group_tags": [
{
"name": "marketing"
},
{
"name": "designer"
},
{
"name": "engineers"
},
{
"name": "sales"
}
]
}