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

List Group Attribute Values

List the user attribute values set on a group.

These apply to every user in the group. When a user is in several groups that set the same attribute, the group with the highest user_attribute_precedence wins.

source is always "group" and source_id always matches this group's ID here — both only vary on the user attribute values endpoint, where a value can come from any of a user's groups or be set directly on the user.

get
/workspaces/{workspace_id}/groups/{group_id}/user_attributes
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}/user_attributes
curl -L https://api-external.zenlytic.com/api/v2/workspaces/<workspace_id>/groups/<group_id>/user_attributes \
  -H 'Authorization: Bearer YOUR_TOKEN'
{
  "data": [
    {
      "id": "ua_789",
      "user_attribute_definition_id": "uad_123",
      "value": "west",
      "data_type": "string",
      "name": "region",
      "source": "group",
      "source_id": "grp_123",
      "user_attribute_precedence": 1,
      "is_overridden": false
    }
  ],
  "meta": {
    "status": "success",
    "errors": [],
    "warnings": []
  }
}

Last updated

Was this helpful?