CentralCSP
APIGroups

List group members

Returns everyone in the group with their profile. This list is not paginated.

Requires the admin role on the workspace.

GET
/v1/workspaces/{workspaceId}/groups/{groupId}/members

Authorization

AuthorizationBearer <token>

An OpenID Connect access token issued by Keycloak, acting as the signed-in user.

In: header

Path Parameters

workspaceId*string
groupId*string

Response Body

application/json

curl -X GET "https://api-next.centralcsp.com/v1/workspaces/string/groups/string/members"
[  {    "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"  }]