• FAQ
  • API
  • Tags
  • Getting the list of project tags through API: get_project_tags

Getting the list of project tags through API: get_project_tags


Sample get_project_tags request

?action=get_project_tags
Returns project tags of all or selected group

Optional parameters:
  • group — tags of a particular group
    You can specify group name or group ID (can be obtained through the same method from the returned group dataset or through get_project_tag_groups method)
  • 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 — project tag ID
  • title — project tag name
  • group — project tag group dataset

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

{ "status": "ok",
    "data": [
        {
           "title": "PROJECT_STATUS_NAME_1",
            "id": "PROJECT_STATUS_ID",
            "group": {          
"title": "PROJECT_GROUP_NAME",
              "id": "PROJECT_GROUP_ID",
             "type": "status",
             "access": "public"
            }, {
            "title": "_PROJECT_LABEL_NAME_2",
            "id": "PROJECT_LABEL_ID",
            "group": {             
"title": "PROJECT_GROUP_NAME",
             "id": "PROJECT_GROUP_ID",
             "type": "label",
             "access": "public"
            }
        ]
}