PUT /v1/organisations
{
  "id": "a5a885caee6286a54ad7bbd4ab5400e9",
  "name": "Annature",
  "email": "ted@annature.com.au",
  "number": "1300 000 000",
  "address": "Level 38, 71 Eagle Street, Brisbane 4000",
  "website": "www.annature.com.au",
  "color": "#5469d4",
  "logo": "https://annature..",
  "created": "2019-12-17T05:30:00Z"
}

Updates the details of your organisation, including contact information and default branding.

Only fields included in the request body will be updated. Any fields not supplied will retain their existing values.

This endpoint is typically used to manage your organisation’s recipient-facing identity — such as the name shown on envelopes, the contact details included in recipient notifications, and the visual branding of signing pages.

Parameters

name
required

The business name of the organisation.

email
optional

The contact email address of the organisation.

number
optional

The contact phone number of the organisation.

address
optional

The street address of the organisation.

website
optional

The public website URL of the organisation.

A base64-encoded logo image.

The image must decode to a valid image/jpeg, image/png, or image/gif. Maximum size: 5MB.

color
optional

Hex colour code representing the organisation’s branding.

Must be a 6-digit code prefixed with # (e.g. #5469d4).

PUT /v1/organisations
{
  "id": "a5a885caee6286a54ad7bbd4ab5400e9",
  "name": "Annature",
  "email": "ted@annature.com.au",
  "number": "1300 000 000",
  "address": "Level 38, 71 Eagle Street, Brisbane 4000",
  "website": "www.annature.com.au",
  "color": "#5469d4",
  "logo": "https://annature..",
  "created": "2019-12-17T05:30:00Z"
}