Zum Inhalt springen
Leadtime
Deutsch
Esc
navigateopen⌘Jpreview

Delete project

Soft deletes a project. The project will be marked as deleted (archived) but not permanently removed from the database.

What happens:

  • The project is marked as archived
  • It will no longer appear in active project lists
  • Historical data (tasks, time bookings, etc.) is preserved
  • The project can be viewed in archived projects if needed

Note: This is a soft delete operation. The project data remains in the database for historical reporting and audit purposes.

DELETE/projects/{id}
Authorization
AuthorizationOAuth2 access token · headerrequired
Scopes:api:write
or
AuthorizationBearer token (JWT) · headerrequired
Path parameters
idstringrequired
Responses
200
successbooleanrequired
Operation success flag
401Unauthorized - Invalid or missing authentication token
403Forbidden - Insufficient API scopes or permissions
404Project not found
Request
curl -X DELETE "https://leadtime.app/api/public/projects/string" \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"
Response
{
  "success": true
}