set-active-theme
dci set-active-theme
Sets the theme active for the authenticated user. Send the reserved
sentinel themeId: "default" to clear the active theme and fall back
to the built-in default. Returns the updated active theme.
Request
Content-Type: application/json
Schema
{
"type": "object",
"required": [
"themeId"
],
"description": "Request body for setting the active custom or preset theme for the authenticated user.",
"properties": {
"themeId": {
"type": "string",
"default": "default",
"description": "Identifier of the theme to activate. Send the reserved sentinel\n`\"default\"` to clear the active theme and fall back to the built-in\ndefault."
}
}
}