• FAQ
  • API
  • Tags
  • Setting/removing task tags through API: update_task_tags

Setting/removing task tags through API: update_task_tags


Sample update_task_tags request

?action=update_task_tags&id_task=TASK_ID&plus=Tag1,Tag2&minus=Tag3,Tag4
Sets new and removes previously set tags for selected task

Required parameters:
  • id_task — task ID

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

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

{
    "status": "ok"
}