Skip to main content
DELETE
/
v1
/
customers
/
{customer_id}
/
tasks
/
{id}
Delete task
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"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

customer_id
string<uuid>
required
id
string<uuid>
required

Response

Task deleted successfully