v1

latestOpenAPI 3.0.12026-07-243686491.1 MB
Themes

Retrieve a single theme

Required scope: themes:read </br>Organization authorization: supported

get/api/v1/themes/{themeId}

Path parameters

themeIdinteger required

Response

Theme with provided id

idinteger

Unique identifier of the theme

namestring required

Name of the theme

titlestring required

Title of the theme formatted with operator name

primaryColorstring required

Primary color in HEX format

secondaryColorstring required

Secondary color in HEX format

logoUrlstring required

Url of the logo image

favIconUrlstring required

Url of the favicon image

Example response

{
  "id": 1,
  "name": "Custom Theme",
  "title": "Operator Custom Theme",
  "primaryColor": "#FF5733",
  "secondaryColor": "#FF5733",
  "logoUrl": "https://example.com/logo.png",
  "favIconUrl": "https://example.com/favicon.png",
  "operator": {
    "id": 1,
    "identifier": "operator-1",
    "themingEnabled": true
  }
}