Skip to main content
DELETE
/
{projectSlug}
/
tasks
/
{taskId}
Delete task
curl --request DELETE \
  --url https://api.elean.app/v1/public/{projectSlug}/tasks/{taskId} \
  --header 'Authorization: Bearer <token>'
{
  "success": true
}

Authorizations

Authorization
string
header
required

API key created in Workspace Settings → API Keys. Pass it in the Authorization header as a Bearer token, or in the X-API-Key header.

Format: el_ followed by 40 hex characters.

Path Parameters

projectSlug
string
required

The slug of the project.

Example:

"my-project"

taskId
string
required

UUID of the task, or its external ID (e.g. PROJ-42).

Example:

"PROJ-42"

Response

Task deleted successfully.

success
boolean
Example:

true