Delete project status
Deletes a project status using soft delete (marked as deleted but not permanently removed).
Important considerations:
- The status will no longer appear in lists or be available for new projects
- Existing projects using this status will retain their reference
- Deleted statuses can be restored using the restore defaults endpoint
Note: This operation requires workspace settings management permission. Ensure you have alternative statuses available before deleting commonly used ones.
DELETE
/administration/project-settings/statuses/{id}Authorization
AuthorizationOAuth2 access token · headerrequiredScopes:
api:writeor
AuthorizationBearer token (JWT) · headerrequiredPath parameters
idstringrequiredResponses
200Project status deleted successfully
401Unauthorized - Invalid or missing authentication token
403Forbidden - Insufficient API scopes or permissions
Request
curl -X DELETE "https://leadtime.app/api/public/administration/project-settings/statuses/string" \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN"const response = await fetch("https://leadtime.app/api/public/administration/project-settings/statuses/string", {
method: "DELETE",
headers: {
"Authorization": "Bearer YOUR_ACCESS_TOKEN"
}
});import requests
response = requests.delete(
"https://leadtime.app/api/public/administration/project-settings/statuses/string",
headers={
"Authorization": "Bearer YOUR_ACCESS_TOKEN"
},
)Response
Project status deleted successfully
Unauthorized - Invalid or missing authentication token
Forbidden - Insufficient API scopes or permissions