Update Branding Theme

Update Branding Theme
Updates existing branding theme

Updates existing branding theme

Request
URI
PUT
https://{api_host}/cloudapi/v1/brandingThemes/{brandingThemeId}
COPY
Path Parameters
string
brandingThemeId
Required

branding theme URN or 'active' for the current active theme


Request Body
BrandingTheme of type(s) application/json
Optional

Show optional properties

{
    "name": "string"
}
{
    "id": "urn:vcloud:entity:vmware:brandinguitheme:1.0.0:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
    "name": "string",
    "themeType": "string",
    "isDefault": false,
    "themeBase": "string",
    "mainFlavor": "string",
    "logoThumbprint": "string",
    "version": "string",
    "previewStyles": "string",
    "entityState": "string",
    "errorMessage": "string",
    "contentDescriptor": {
        "favIcon": "example.ico",
        "logo": "example.png",
        "background": "example.png",
        "styles": "example.css",
        "portalName": "VCF Automation",
        "localizations": "example.json",
        "customLinks": "example.json",
        "idpLoginButtons": "idpLoginButtons.json"
    }
}
Authentication
This operation uses the following authentication methods.
Responses
200

OK

Returns BrandingTheme of type(s) application/json;version=9.1.0
{
    "id": "urn:vcloud:entity:vmware:brandinguitheme:1.0.0:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
    "name": "string",
    "themeType": "string",
    "isDefault": false,
    "themeBase": "string",
    "mainFlavor": "string",
    "logoThumbprint": "string",
    "version": "string",
    "previewStyles": "string",
    "entityState": "string",
    "errorMessage": "string",
    "contentDescriptor": {
        "favIcon": "example.ico",
        "logo": "example.png",
        "background": "example.png",
        "styles": "example.css",
        "portalName": "VCF Automation",
        "localizations": "example.json",
        "customLinks": "example.json",
        "idpLoginButtons": "idpLoginButtons.json"
    }
}

Code Samples
COPY
                    curl -X PUT -H 'Authorization: <value>' -H 'Content-Type: application/json' -d '{"name":"string"}' https://{api_host}/cloudapi/v1/brandingThemes/{brandingThemeId}