PUT
/
themes
/
{theme_id}
/
activate
Activate a theme
curl --request PUT \
  --url http://localhost:3001/portal-api/themes/{theme_id}/activate \
  --header 'Authorization: <api-key>'
{
  "status": "ok",
  "message": "Action Synchronize: Executed successfully"
}

Authorizations

Authorization
string
header
required

Path Parameters

theme_id
string
required

name of the theme from the theme.json file

Example:

"default"

Response

OK

status
string

Status of the operation

Example:

"ok"

message
string

Human-readable description of the status

Example:

"Action Synchronize: Executed successfully"