GET /v1/organisations
PUT /v1/organisations
{
  "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"
}

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

id
string

The unique identifier for the organisation.

name
string(250)

The business name of the organisation.

email
string(250)

The organisation-wide contact email address.

number
string(100)

The contact phone number for the organisation.

address
string(250)

The street address of the organisation.

website
string(250)

The organisation’s public website URL.

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.

color
string

The hex colour code representing the organisation’s default branding. Used for buttons, accents, and email styling unless overridden.

created
string

The ISO 8601 timestamp indicating when the organisation was created.

GET /v1/organisations
PUT /v1/organisations
{
  "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"
}