• FAQ
  • API
  • Tags
  • Creating project tags through API: add_project_tags

Creating project tags through API: add_project_tags


Sample add_project_tags request

?action=add_project_tags&title=PROJECT_LABEL_NAME_1,PROJECT_LABEL_NAME_2&
group=PROJECT_GROUP_ID
Creates project tags in selected group
*if there are no tags with the same name

Required parameters:
  • group — group, where project tags will be created
    You can specify group name or group ID (can be obtained through get_project_tag_groups method)
    • title — project tag names separated by commas

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

"status": "ok",
"data": [
   { "title": "PROJECT_LABEL_NAME_1", "id": PROJECT_LABEL_ID },
   { "title": "PROJECT_LABEL_NAME_2", "id": PROJECT_LABEL_ID }
]
}