Skip to main content
PATCH
/
v1
/
brand
Update
curl --request PATCH \
  --url https://{defaultHost}/v1/brand \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "brand": {
    "color": "1D2B39"
  }
}
'
{
  "id": "6495f55f-f39c-403e-9dc6-97211e23d59c",
  "object": "brand",
  "color": "1D2B39",
  "email": null,
  "phone": null,
  "powered_by_enabled": true,
  "website": null,
  "address": null,
  "logo": null,
  "created_at": 1767909673,
  "updated_at": 1767909673
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
brand
object

Response

200 - application/json

Success

id
string | null

The UUID of the specific object.

object
string

A string describing the object type returned.

color
string | null

The primary brand color. Used for buttons, links, loading states, etc.

email
string | null

The email address that will be shown to customers for support, on statements, etc.

phone
string | null

The phone number that will be shown to customers for support, on statements, etc.

website
string | null

The website that will be shown to customers for support, on statements, etc.

logo

Expandable – The associated media ID.

address

Expandable – The associated address ID.

created_at
integer | null

Time at which the object was created. Measured in seconds since the Unix epoch.

updated_at
integer | null

Time at which the object was last updated. Measured in seconds since the Unix epoch.