Theme - Fetch a theme with a specific ID
Authorizations
Path parameters
themeIdstring · uuidRequired
Expects Id of an existing theme
Query parameters
tenantIdstring · uuidOptional
Expects Id of an existing tenant
versionstringOptionalDefault:
The requested API version
1.0
Responses
200
Indicates successful retrieval of the requested theme
404
Indicates that the requested theme does not exist
500
Server related error
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