Get brand

Gets the brand properties for the specified account.

To access this endpoint using an access token, you’ll need to specify the /accounts/{accountID}/branding.read scope.

GET
/accounts/{accountID}/branding
200 403 404 429
Branding for the account.
{
  "colors": {
    "dark": {
      "accent": "#111111"
    },
    "light": {
      "accent": "#111111"
    }
  }
}
The user is not authorized to make the request.
Request received, but resource was not found.
Request was refused due to rate limiting.

Retry-After

number

Path parameters

accountID

string <uuid> required
ID of the account.

Response

application/json

colors

object required
Brand colors for light and dark modes.
Show child attributes

dark

object required
Show child attributes

accent

string required
A CSS hex color representing an accent color.

light

object required
Show child attributes

accent

string required
A CSS hex color representing an accent color.