• FAQ
  • API
  • Tags
  • Getting the list of project tag groups through API: get_project_tag_groups

Getting the list of project tag groups through API: get_project_tag_groups


Sample get_project_tag_groups request

?action=get_project_tag_groups
Returns project tag groups

Optional parameters:
  • type — groups only of particular type, possible values: status, label
  • access — groups only with a particular visibility, possible values:
    • public — available to all teams (including external client teams)
      private — available only for your company teams

Returned data:
  • id — group ID
  • title — group name
  • type — group type
  • access — group visibility

Sample JSON response
If the request succeeds, the response will contain ok status and the following data:

{
"status": "ok",
"data": [
{
"title": "GROUP_NAME_1",
"id": GROUP_ID,
"type": "status",
"access": "public"
},
{
"title": "GROUP_NAME_2",
"id": GROUP_ID,
"type": "label",
"access": "public"
}, { "title": "GROUP_NAME_3", "id": GROUP_ID,
"type": "label", "access": "private" } ]
}