curl --request PATCH \
--url https://api.example.com/cabinet/branding/themes \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"dark": true,
"light": true
}
'{
"dark": true,
"light": true
}Update which themes are enabled. Admin only. At least one theme must be enabled.
curl --request PATCH \
--url https://api.example.com/cabinet/branding/themes \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"dark": true,
"light": true
}
'{
"dark": true,
"light": true
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.