Theme - Retrieves details of a theme by ID

Retrieves details of a specific theme identified by its unique ID within the context of a specified tenant.

get
Authorizations
Path parameters
themeIdstring · uuidRequired

Enter the ID of an existing theme

Query parameters
tenantIdstring · uuidOptional

Enter the ID of an existing tenant

versionstringOptional

The requested API version

Default: 1.0
Responses
200
Success: Requested theme retrieved successfully.
get
GET /themes/{themeId} HTTP/1.1
Host: 
Authorization: Bearer JWT
Accept: */*
{
  "themeId": "123e4567-e89b-12d3-a456-426614174000",
  "themeName": "text",
  "themeObject": {
    "name": "text",
    "dataColors": [
      "text"
    ],
    "background": "text",
    "foreground": "text",
    "tableAccent": "text",
    "textClasses": {
      "label": {
        "color": "text",
        "fontFace": "text",
        "fontSize": 1
      },
      "callout": {
        "color": "text",
        "fontFace": "text",
        "fontSize": 1
      },
      "title": {
        "color": "text",
        "fontFace": "text",
        "fontSize": 1
      },
      "header": {
        "color": "text",
        "fontFace": "text",
        "fontSize": 1
      }
    }
  }
}

Last updated