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

# The Organisation object

An organisation is the top-level resource in Annature. It represents your business entity and owns all other resources — including envelopes, templates, accounts, groups, and webhook endpoints.

Organisation-level settings determine the default branding and contact information used throughout your account. These defaults apply to envelopes, notifications, and the signing experience unless overridden by a group or individual account.

This object allows you to retrieve and update your organisation’s name, contact details, and visual branding — including your logo and primary colour.

## Attributes

<ParamField path="id" type="string">
  The unique identifier for the organisation.
</ParamField>

<ParamField path="name" type="string(250)">
  The business name of the organisation.
</ParamField>

<ParamField path="email" type="string(250)">
  The organisation-wide contact email address.
</ParamField>

<ParamField path="number" type="string(100)">
  The contact phone number for the organisation.
</ParamField>

<ParamField path="address" type="string(250)">
  The street address of the organisation.
</ParamField>

<ParamField path="website" type="string(250)">
  The organisation’s public website URL.
</ParamField>

<ParamField path="logo" type="string">
  The Annature-hosted URL of the organisation’s logo image. This logo will be used as the default for envelope branding unless overridden by a group.
</ParamField>

<ParamField path="color" type="string">
  The hex colour code representing the organisation’s default branding. Used for buttons, accents, and email styling unless overridden.
</ParamField>

<ParamField path="created" type="string">
  The ISO 8601 timestamp indicating when the organisation was created.
</ParamField>

<RequestExample>
  ```bash Endpoints theme={null}
  GET /v1/organisations
  PUT /v1/organisations
  ```
</RequestExample>

<ResponseExample>
  ```json Organisation Object theme={null}
  {
    "id": "a5a885caee6286a54ad7bbd4ab5400e9",
    "name": "Annature group",
    "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..",
    "color": "#5469d4",
    "created": "2019-12-17T05:30:00Z"
  }
  ```
</ResponseExample>
