v6

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

List all collection memberships

This method allows you to list a collections individual memberships. It's important to note that memberships returned from this endpoint do not include group memberships.

post/collections.memberships

Request body

offsetnumber
limitnumber
idstring uuid required

Identifier for the collection

querystring

Filter memberships by user names

permission'read' | 'read_write'

Example request

{
  "limit": 25,
  "query": "jenny"
}

Response

OK

Example response

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