Skip to main content
DELETE
/
api
/
v1
/
projects
/
{projectId}
curl --request DELETE \
  --url http://localhost:3000/api/v1/projects/proj_123abc \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "Project deleted"
}

Path Parameters

projectId
string
required
Project ID to delete

Response

success
boolean
Indicates if the project was deleted successfully
message
string
Success or error message
curl --request DELETE \
  --url http://localhost:3000/api/v1/projects/proj_123abc \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "Project deleted"
}

Notes

This action is irreversible. Once a project is deleted, it cannot be recovered.
  • Deleting a project will remove all associated data
  • All workflows, agents, and other resources linked to this project will be affected
  • Ensure you have proper backups before deleting a project