v6

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

List document memberships

Users with direct membership to a document. To list all users with access to a document use documents.users.

post/documents.memberships

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": {
    "users": [
      {
        "name": "Jane Doe"
      }
    ]
  },
  "pagination": {
    "limit": 25
  }
}