Delete a comment corresponding at given ID.

DELETE /data/tasks/{task_id}/comments/{comment_id}

Path parameters

  • task_id string(uuid) Required
  • comment_id string(uuid) Required

Responses

  • 204

    Comment corresponding at given ID deleted

  • 404

    Task or comment not found

DELETE /data/tasks/{task_id}/comments/{comment_id}
curl \
 --request DELETE 'http://api.example.com/data/tasks/a24a6ea4-ce75-4665-a070-57453082c25/comments/a24a6ea4-ce75-4665-a070-57453082c25' \
 --header "Authorization: $API_KEY"