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

# Retrieve a group

Retrieves the full details of a specific group using its unique identifier.

This endpoint returns the group's business identity, contact details, and branding configuration, all of which are used when theming envelopes or replacing default organisation-level values in recipient-facing content.

## Parameters

<ParamField path="id" required>
  The unique identifier of the group to retrieve.
</ParamField>

<RequestExample>
  ```bash Endpoint theme={null}
  GET /v1/groups/:id
  ```
</RequestExample>

<ResponseExample>
  ```json theme={null}
  {
    "id": "a5a885caee6286a54ad7bbd4ab5400e9",
    "name": "Annature group",
    "business": "Annature",
    "email": "ted@annature.com.au",
    "number": "1300 000 000",
    "address": "Level 38, 71 Eagle Street, Brisbane 4000",
    "website": "www.annature.com.au",
    "logo": "https://annature..",
    "colour": "#5469d4",
    "created": "2019-12-17T05:30:00Z"
  }
  ```
</ResponseExample>
