Skip to main content
GET
/
cases
/
{case_id}
/
collaborators
List collaborators
curl --request GET \
  --url https://api.example.com/v1/cases/{case_id}/collaborators \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "01K8CL02BJ1T88HRYE78AN7BBB",
      "user_id": "<string>",
      "email": "edith@example.com",
      "first_name": "John",
      "last_name": "Johnson",
      "role": "editor",
      "status": "accepted",
      "invited_at": "2023-11-07T05:31:56Z",
      "accepted_at": "2023-11-07T05:31:56Z",
      "invited_by": "<string>",
      "permissions": {
        "can_manage_collaborators": false,
        "can_manage_documents": true,
        "can_manage_financials": true,
        "can_manage_probate": false,
        "can_use_tools": true
      },
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

case_id
string
required

Unique case identifier (ULID format).

Query Parameters

status
enum<string>
Available options:
pending,
accepted,
declined,
revoked
role
enum<string>
Available options:
owner,
editor,
viewer

Response

List of collaborators.

data
object[]