Skip to main content
DELETE
http://localhost:3000
/
projects
/
{id}
curl -X DELETE 'https://api.example.com/projects/project_api' \
  -H 'Authorization: Bearer YOUR_TOKEN'

Path Parameters

id
string
required
The project ID to delete

Response

Returns 204 No Content on success.
Deleting a project will also delete all associated environments.
curl -X DELETE 'https://api.example.com/projects/project_api' \
  -H 'Authorization: Bearer YOUR_TOKEN'