Skip to main content
DELETE
/
api
/
work-tasks
/
{task_uid}
Delete work task
curl --request DELETE \
  --url https://dev.exante.app/api/work-tasks/{task_uid} \
  --header 'Authorization: Bearer <token>'
Permanently deletes a user task. Returns 204 with no body on success.
HIL approval tasks cannot be deleted. Attempting to delete an HIL task returns 403:
{
  "error": "Cannot delete HIL approval tasks",
  "details": []
}

Task lookup

The endpoint searches across all organizations the authenticated user belongs to. No organization_uid parameter is required.

Authorizations

Authorization
string
header
required

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

Path Parameters

task_uid
string<uuid>
required

Work task UID

Response

Task deleted