Theme - Retrieves themes for a tenant
Authorizations
Path parameters
tenantIdstring · uuidRequired
Enter ID of the tenant for which themes are fetched.
Query parameters
versionstringOptionalDefault:
The requested API version
1.0
Header parameters
embedfast-user-idstringOptional
Optional User Id
Responses
200
Success: Returns a list of available themes for the specified tenant.
400
Bad Request: The request could not be processed due to invalid syntax or missing/incorrect parameters.
401
Unauthorized: Invalid credentials or missing/invalid authentication token.
500
Internal Server Error: An unexpected error occurred or a server timeout.
get
GET /tenants/{tenantId}/themes 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