v6

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

List all collection group members

This method allows you to list a collections group memberships. This is the list of groups that have been given access to the collection.

post/collections.group_memberships

Request body

offsetnumber
limitnumber
idstring uuid required

Identifier for the collection

querystring

Filter memberships by group names

permission'read' | 'read_write'

Example request

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

Response

OK

Example response

{
  "data": {
    "groups": [
      {
        "name": "Engineering",
        "memberCount": 11
      }
    ]
  },
  "pagination": {
    "limit": 25
  }
}