curl --request DELETE \
--url https://api.example.com/api/projects/{id}{
"warning": {}
}Delete a project
curl --request DELETE \
--url https://api.example.com/api/projects/{id}{
"warning": {}
}curl -X DELETE https://api.example.com/api/projects/1 \
-H "Authorization: Bearer YOUR_TOKEN_HERE"
HTTP/1.1 204 No Content
{
"error": "Unauthorized",
"message": "Invalid or missing authentication token"
}
{
"error": "Not Found",
"message": "Project not found"
}