Skip to main content
POST
/
api
/
v1
/
vault
/
projects
/
{project_id}
/
users
Update Project Users
curl --request POST \
  --url https://api.harvey.ai/api/v1/vault/projects/{project_id}/users \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "users": [
    {
      "email": "admin@example.com",
      "access_level": "MANAGE"
    },
    {
      "email": "reviewer@example.com",
      "access_level": "READ"
    }
  ]
}
'
{
  "status": "COMPLETED",
  "data": {
    "project_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "added": [
      {
        "email": "jsmith@example.com",
        "access_level": "READ"
      }
    ],
    "updated": [
      {
        "email": "jsmith@example.com",
        "access_level": "READ",
        "previous_access_level": "READ"
      }
    ],
    "failed": [
      {
        "email": "jsmith@example.com",
        "reason": "<string>"
      }
    ]
  }
}

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

Body

application/json
users
object[]
required

The list of users and their desired access levels to add or update. Users omitted from this list are left unchanged.

Response

Project users successfully updated

status
enum<string>
required

Status of the request

Available options:
COMPLETED
data
object
required