Update Site Theme

Update the theme of a site by name.

The request JSON must provide the id of the color.

🚧

Send entire JSON Body

This API requires all colors within the site's theme to be sent in order to update.

DataTypeDescription
idstringNeeds to follow the pattern: "color_". (color_1, color_2, etc). This property cannot be changed.
valuestringRGB/RGBA/HEX color value. This will be converted to RGBA by Duda.
labelstring50 chars max. HTML-safe string
{
  "colors": [
    {
      "id": "string",
      "value": "string",
      "label": "string"
    }
  ]
}
Language