> ## 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.

# Update a group

Updates the details of an existing group.

This endpoint allows you to modify a group's branding, contact information, or business identity. Updates will apply to all future envelopes sent by accounts in the group and may affect the recipient-facing appearance of previously sent envelopes if branding settings are reused or cached.

To update the logo, supply a new base64-encoded image string. Contact and branding changes will take effect immediately.

## Parameters

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

<ParamField path="name" required>
  The display name for the group, as shown in the Annature dashboard.
</ParamField>

<ParamField path="business" type="optional">
  The business name to display to recipients. Overrides the organisation's default name.
</ParamField>

<ParamField path="email" type="optional">
  Email address to use in place of the sender’s or organisation’s.
</ParamField>

<ParamField path="number" type="optional">
  Contact number to display to recipients.
</ParamField>

<ParamField path="address" type="optional">
  Street address to display in place of the organisation’s.
</ParamField>

<ParamField path="website" type="optional">
  Website URL used in recipient-facing emails and branding.
</ParamField>

<ParamField path="logo" type="optional">
  A base64-encoded logo image.

  The image must decode to a valid `image/jpeg`, `image/png`, or `image/gif` format. Maximum size: 5MB.
</ParamField>

<ParamField path="colour" type="optional">
  Hex colour code for the group’s branding theme.

  Must be a 6-digit code prefixed with `#` (e.g. `#5469d4`).
</ParamField>

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

  ```json Body theme={null}
  {
    "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",
    "colour": "#5469d4",
    "logo": "https://annature.."
  }
  ```
</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",
    "colour": "#5469d4",
    "logo": "https://annature..",
    "created": "2019-12-17T05:30:00Z"
  }
  ```
</ResponseExample>
