• FAQ
  • API
  • Tags
  • Creating task tag groups through API: add_task_tag_groups

Creating task tag groups through API: add_task_tag_groups


Sample add_task_tag_groups request

?action=add_task_tag_groups&title=GROUP_NAME_1,GROUP_NAME_2&type=label&access=public
Creates task tag groups
*if there are no tag groups with same name

Required parameters:
  • title — group names separated by commas
  • type — group type, possible values: status, label
  • access — group visibility (statuses are always visible and have public value)
    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": "label",
            "access": "public"
        },
        {
            "title": "GROUP_NAME_2",
            "id": GROUP_ID,
            "type": "status",
            "access": "public"
        }
    ]
}