APIMembers
List members
Lists the people in the workspace with their role and profile. Filter by role, or search by name and email.
Requires membership of the workspace.
AuthorizationBearer <token>
An OpenID Connect access token issued by Keycloak, acting as the signed-in user.
In: header
Path Parameters
workspaceId*string
Query Parameters
cursor?string
The nextCursor of the previous page. Omit it to start from the beginning. A cursor encodes a position and is not meant to be built by hand.
limit*|
How many items to return, from 1 to 200.
Range
1 <= value <= 200Default
50q?string
Match part of a name or email address.
Length
length <= 255role?|
member is a regular collaborator. admin can also administer the workspace, its members, and its websites.
Response Body
application/json
curl -X GET "https://api-next.centralcsp.com/v1/workspaces/string/members?limit=50"{ "data": [ { "id": "string", "workspaceId": "string", "userId": "string", "role": "admin", "email": "string", "firstName": "string", "lastName": "string", "picture": "string", "createdAt": "2019-08-24T14:15:22Z", "updatedAt": "2019-08-24T14:15:22Z" } ], "pagination": { "nextCursor": "string", "hasMore": true, "total": 0 }}