For the complete documentation index, see llms.txt. This page is also available as Markdown.

List Group Members

List every member of the group.

For the built-in "All Users" group, this returns every member of the workspace, since its membership always tracks the workspace roster.

get
/workspaces/{workspace_id}/groups/{group_id}/members
Authorizations
AuthorizationstringRequired

A Personal Access Token (PAT).

Path parameters
workspace_idstringRequired
group_idstringRequired
Responses
200

Successful Response

application/json
get/workspaces/{workspace_id}/groups/{group_id}/members
curl -L https://api-external.zenlytic.com/api/v2/workspaces/<workspace_id>/groups/<group_id>/members \
  -H 'Authorization: Bearer YOUR_TOKEN'
{
  "data": [
    {
      "id": "usr_111",
      "workspace_id": "ws_456",
      "role": "admin",
      "first_name": "Ada",
      "last_name": "Lovelace",
      "email": "ada@acme.com",
      "email_verified": true,
      "mfa_enabled": false,
      "identity_provider": "Google"
    }
  ],
  "meta": {
    "status": "success",
    "errors": [],
    "warnings": []
  }
}

Last updated

Was this helpful?