Getting the Report Skins

Usage

Gets a list of all skins of all types declared on a Web Intelligence Server.

Request

GET /configuration/skins

Response

Response type: application/xml or application/json

Response body: details of the available skins identified by:

<skin type="Cell|Block|Section|Report">
    <name>
    <background>
        <color>
        <image>

Where:

  • <name> is the unique name of the skin
  • <background> is the background fill for the skin: a color, pattern, or a gif URL.

Example

<skins> 
    <skin type="Cell">   
        <name>Curve</name>
        <background>
            <color rgb="#ffffff"/>
            <image src="boimg://skin_marble.gif" display="Tile"/>
        </background>
    </skin>
    <skin type="Cell">
        <name>Business Objects</name>
        <background>
            <color rgb="#ffffff"/>
            <image src="boimg://skin_bo.gif" display="Stretch"/>
        </background>
    </skin>
    <skin type="Block"> 
        <name>Business Objects</name>
        <background>
            <color rgb="#ffffff"/>
            <image src="boimg://skin_bo.gif" display="Stretch"/> 
        </background>
    </skin>
    <skin type="Section">
        <name>Business Objects</name>
        <background>
            <color rgb="#ffffff"/>
            <image src="boimg://skin_bo.gif" display="Stretch"/>
        </background>
    </skin>
    <skin type="Section">
        <name>Dots</name>
        <background>
            <color rgb="#ffffff"/>
            <image src="boimg://skin_listing.gif" display="Tile"/>
        </background>
    </skin>
    <skin type="Report">
        <name>Dots</name>
        <background>
            <color rgb="#ffffff"/>
            <image src="boimg://skin_listing.gif" display="Tile"/>
        </background>
    </skin>
</skins>