Skip to main content
GET
/
api
/
v1
/
vault
/
projects
/
{project_id}
/
users
List Project Users
curl --request GET \
  --url https://api.harvey.ai/api/v1/vault/projects/{project_id}/users \
  --header 'Authorization: Bearer <token>'
{
  "status": "COMPLETED",
  "data": {
    "project_id": "12345678-1234-5678-1234-567812345678",
    "users": [
      {
        "user_id": "aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee",
        "email": "admin@example.com",
        "name": "Alice Admin",
        "access_level": "MANAGE"
      },
      {
        "user_id": "11111111-2222-3333-4444-555566667777",
        "email": "reviewer@example.com",
        "name": "Bob Reviewer",
        "access_level": "READ"
      }
    ]
  }
}

Documentation Index

Fetch the complete documentation index at: https://developers.harvey.ai/llms.txt

Use this file to discover all available pages before exploring further.

Permissions

Requires Vault API permission, and either Vault sharing (view only) or Vault sharing permission.

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 Vault project

Response

Successfully retrieved project users

status
enum<string>
required

Status of the request

Available options:
COMPLETED
data
object
required