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 deleted successfully",
  "project_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "deleted_folders_count": 123,
  "deleted_files_count": 123
}

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

200
application/json

Project deleted successfully

The response is of type object.