cURL
curl --request DELETE \ --url https://api.example.com/v1/customers/{customer_id}/tasks/{id} \ --header 'Authorization: Bearer <token>'
{ "code": "tasks.task_not_found", "message": "Task not found" }
Delete a task
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Task deleted successfully