Workspaces
Get list of all workspace memberships
Returns the memberships of your workspaces.
get/v3/workspace_memberships
Query parameters
offsetinteger
The number of documents to skip before starting to collect the result set.
limitinteger
Example:20
The numbers of results to return.
workspacestring
Uniquely identify a workspace.
Example:mEFayXdO
Filter by workspace.
userstring
Partial text match on user's email, case-insensitive.
Response
All matching workspace memberships.
Example response
{
"count": 10,
"results": [
{
"identifier": "mEFayXdO",
"workspace": "mEFayXdO",
"user": {
"id": 1,
"name": "Carl Johnson",
"username": "carljohnson",
"email": "carljohnson@grove.street",
"avatar": "https://affinda-api.s3.amazonaws.com/media/user-avatar.png?AWSAccessKeyId=KEY&Signature=SIG"
}
}
]
}