Skip to Content
API ReferenceProjectsDelete Project

Delete Project

Permanently remove a recording project.

DELETEhttps://api.identitycall.ai/api/v1/public/projects/:id

Delete a project. Account-wide API keys only.

Requires delete permission

This action is irreversible. Deleting a project cascades to its recordings, dialogues, goal evaluations, virtual numbers, voice agents, and other dependent records. Make sure you have exported anything you need first.

API Key Scope

ScopeBehavior
Account-wideAllowed.
Project-scoped403 Forbidden — project-scoped keys cannot delete projects.

Path Parameters

Parameters

NameTypeRequiredDefaultDescription
idintegerYes-Numeric project ID.

Request

curl -X DELETE "https://api.identitycall.ai/api/v1/public/projects/42" \ -H "Authorization: Bearer $IDENTITYCALL_API_KEY"

Response

Returns 204 No Content on success with an empty body.

Errors

StatusCondition
401Missing or invalid Authorization header.
403API key lacks delete permission, or the key is project-scoped.
404Project does not exist in the account.

Example 403 body for a project-scoped key:

{ "error": "Project-scoped API keys cannot create or destroy projects" }

Try It

Try It

See also