• FAQ
  • API
  • Tags
  • Creating project tag groups through API: add_project_tag_groups

Creating project tag groups through API: add_project_tag_groups


Sample add_project_tag_groups request

?action=add_project_tag_groups&title=GROUP_NAME_1,GROUP_NAME_2&access=public
Creates project tag groups
*if there are no tags with the same name

Required parameters:
  • title — group names separated by commas
  • access — tag group visibility, possible values:
    public — available to all teams (including external client teams)
    private — available only for your company teams

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": "",
            "access": "public"
        },
        {
            "title": "GROUP_NAME_2",
            "id": GROUP_ID,
            "type": "",
            "access": "public"
        }
    ]
}