• FAQ
  • API
  • Tags
  • Setting/removing project tags through API: update_project_tags

Setting/removing project tags through API: update_project_tags


Sample update_project_tags request

?action=update_project_tags&id_project=PROJECT_ID&plus=Tag1,Tag2&minus=Tag3,Tag4
Sets new and removes previously set tags for selected project

Required parameters:
  • id_project — project ID

Optional parameters:
*tags can be specified by their names (full match) or IDs (can be obtained through get_project_tags method)
  • plus — project tags separated by commas, which will be added
  • minus — project tags separated by commas, which will be removed

Sample JSON response
If the request succeeds, the response will contain ok status

{
    "status": "ok"
}