For the complete documentation index, see llms.txt. This page is also available as Markdown.

Branding

White-label branding assets and configuration.

Returns branding configuration.

get

Returns current branding configuration.

Responses
200

Successful operation.

application/json
headerColorstringRequired
primaryColorstringRequired
companyNamestringRequired
companyLogoUrlstringRequired
loginBannerUrlstringRequired
faviconUrlstringRequired
headerColor1stringRequired
termsAndConditionsstringRequired
useCustomMenuColorsbooleanRequired
useSolidBackgroundbooleanRequired
get/branding
GET /api/v1/branding HTTP/1.1
Accept: */*
{
  "headerColor": "#0031ff",
  "headerColor1": "#8259ef",
  "primaryColor": "#0031ff",
  "companyName": "GUARDIAN",
  "companyLogoUrl": "/assets/images/logo.png",
  "loginBannerUrl": "/assets/bg.jpg",
  "faviconUrl": "favicon.ico",
  "termsAndConditions": "Lorem Ipsum Version Introduction..."
}

Update branding.

post

Update branding. Only users with the Standard Registry role are allowed to make the request.

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Body
headerColorstringRequired
primaryColorstringRequired
companyNamestringRequired
companyLogoUrlstringRequired
loginBannerUrlstringRequired
faviconUrlstringRequired
headerColor1stringRequired
termsAndConditionsstringRequired
useCustomMenuColorsbooleanRequired
useSolidBackgroundbooleanRequired
Responses
204

Branding updated successfully. No response body.

No content

post/branding
POST /api/v1/branding HTTP/1.1
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 204

{
  "headerColor": "#0031ff",
  "headerColor1": "#8259ef",
  "primaryColor": "#0031ff",
  "companyName": "GUARDIAN",
  "companyLogoUrl": "/assets/images/logo.png",
  "loginBannerUrl": "/assets/bg.jpg",
  "faviconUrl": "favicon.ico"
}

No content

Last updated