Skip to main content
DELETE
/
api
/
v1
/
vault
/
delete_project
/
{project_id}
Delete an entire vault project and all its contents
curl --request DELETE \
  --url https://api.harvey.ai/api/v1/vault/delete_project/{project_id} \
  --header 'Authorization: Bearer <token>'
{
  "message": "Project deletion is in progress"
}

Permissions

Requires Vault API and Modify workspace projects permissions.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

project_id
string<uuid>
required

The unique identifier of the project to delete

Response

Project deletion accepted. Deletion continues asynchronously after the API request returns.

message
string
required

Deletion status message.

Example:

"Project deletion is in progress"