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
Example request
{
"limit": 25,
"query": "jenny"
}Response
OK
Example response
{
"data": {
"users": [
{
"name": "Jane Doe"
}
]
},
"pagination": {
"limit": 25
}
}