Zum Inhalt springen
Leadtime
Deutsch
Esc
↑↓navigieren↵öffnen⌘Jvorschau

Delete a todo (soft delete)

Soft deletes a todo item by setting its deletedAt timestamp. Only todos belonging to library component items are accessible.

DELETE/administration/project-components/item-details/{itemId}/todos/{todoId}
Authorization
AuthorizationOAuth2 access token · headerrequired
Scopes:api:write
or
AuthorizationBearer token (JWT) · headerrequired
Path parameters
itemIdstringrequired

Component item UUID. Items are the building blocks within components (Epics, Work Packages, Todo Lists, Test Suites).

todoIdstringrequired

Todo UUID

Responses
200
idstring

ID of the updated todo

successbooleanrequired

Operation success status

401

Unauthorized - Invalid or missing authentication token

403

Forbidden - Insufficient API scopes or permissions

Try it
Server
Authorization
Parameters
Request
curl -X DELETE "https://leadtime.app/api/public/administration/project-components/item-details/3047983b-d798-4aff-8dd4-628cf1900703/todos/550e8400-e29b-41d4-a716-446655440011" \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"
Response
{
  "id": "550e8400-e29b-41d4-a716-446655440001",
  "success": true
}