> ## Documentation Index
> Fetch the complete documentation index at: https://docs.galtea.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Retrieving User Group by Name

> Get a user group by its name.

## Returns

Returns a [User Group](/concepts/user-group) object.

## Example

```python theme={"system"}
user_group = galtea.user_groups.get_by_name(name="quality-reviewers-" + run_identifier)
```

## Parameters

<ResponseField name="name" type="string" required>
  The name of the user group to retrieve.
</ResponseField>
