The branding-theme-uninstall operation is used to remove custom themes.

Request Packet Structure

A request XML packet uninstalling a custom theme includes the branding-theme-uninstall operation node:

<packet>
    <ui>
        <branding-theme-uninstall>
            ...
        </branding-theme-uninstall>
    </ui>
</packet>

The branding-theme-uninstall graphical representation is as follows:

image 66947.gif

Note: The interactive schema navigator for all request packets is available here: http://plesk.github.io/api-schemas/1.6.9.1/agent_input.svg.

  • The filter node is required. It specifies the filtering rule. For more information, refer to the Available Filters section. Data type: BrandingInputFilter (ui_input.xsd) .

Response Packet Structure

The branding-theme-uninstall node of the output XML packet is structured as follows:

image 66949.gif

Note: The interactive schema navigator for all response packets is available here: http://plesk.github.io/api-schemas/1.6.9.1/agent_output.svg.

  • The result node is required. It wraps the response retrieved from the server. Data type: resultFilterType (common.xsd).
  • The status node is required. It specifies the execution status of the operation. Data type: result_status. Allowed values: ok | error.
  • The errcode node is optional. Is returns the error code if the operation fails. Data type: unsignedI nt.
  • The errtext node is optional. It returns the error message if the operation fails. Data type: string.
  • The filter-id node is optional. Returns the parameter by which the custom theme was filtered by in the request packet. Data type: anySimple.
  • The id node is optional. Returns the identifier of the uninstalled custom theme. Data type: id_type (common.xsd).

Samples

This packet removes a custom theme provided by the reseller with login name JDoe:

<packet>
    <ui>
        <branding-theme-remove>
            <filter>
                <vendor-login>JDoe</vendor-login>
            </filter>
        </branding-theme-remove>
    </ui>
</packet>

Response:

<packet>
    <ui>
        <branding-theme-remove>
            <result>
                <status>ok</status>
                <filter-id>JDoe</filter-id>
                <id>1234</id>
            </result>
        </branding-theme-remove>
    </ui>
</packet>