GET
/
api
/
v1
/
vault
/
get_metadata
/
{project_id}
Get Project Metadata
curl --request GET \
  --url https://api.harvey.ai/api/v1/vault/get_metadata/{project_id} \
  --header 'Authorization: Bearer <token>'
{
  "project_id": "<string>",
  "file_ids": [
    "<string>"
  ],
  "file_count": 123,
  "max_file_count": 123,
  "project_size": 123,
  "max_project_size": 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
required

The project ID.

Response

Project metadata details

project_id
string

The project ID.

file_ids
string[]

Array of file IDs in the project.

file_count
integer

Number of files in the project.

max_file_count
integer

Maximum number of files allowed in the project.

project_size
integer

Total size of files in bytes.

max_project_size
integer

Maximum storage size allowed in bytes.