Getting the Details of a Style

Gets the description of a style of a Web Intelligence document.

Request

GET <webiURL>/documents/{documentId}/styles/{styleId}

Where:
  • {documentId} is the document identifier retrieved from the list of documents
  • {styleId} is the style identifier from the list of styles of the document
Response

Response type: application/xml or application/json

Response body: details of a document style identified by <style>

Example

GET <webiURL>/documents/5022/styles/3

<style>    
   <id>3</id>
   <parentId>58</parentId>
     <border>
         <top thickness="thin" rgb="#cacad9" style="plain"/>  
         <bottom thickness="thin" rgb="#cacad9" style="plain"/>
         <left thickness="thin" rgb="#cacad9" style="plain"/>
         <right thickness="thin" rgb="#cacad9" style="plain"/>
     </border>
     <background>
         <color rgb="#5175b9"/>
     </background>
     <font size="9" face="Arial" italic="false" bold="true" strikethrough="false"
         underline="false" rgb="#ffffff"/>
     <alignment horizontal="left" vertical="bottom"/>
</style>