v6

latestOpenAPI 3.0.0raw.githubusercontent.com2024-10-187525179.6 KB
Documents

List document users

All users with access to a document. To list only users with direct membership to the document use documents.memberships

post/documents.users

Request body

idstring required

Unique identifier for the document. Either the UUID or the urlId is acceptable.

querystring

If set, will filter the results by user name.

Example request

{
  "id": "hDYep1TPAM"
}

Response

OK

Example response

{
  "data": [
    {
      "name": "Jane Doe"
    }
  ],
  "pagination": {
    "limit": 25
  }
}