Getting Web Intelligence RESTful Web Service SDK Information

Usage

Returns the following information about your running version of SAP BusinessObjects Web Intelligence RESTful Web Service SDK:

  • Product name
  • Version number
  • Vendor name
  • Major release, minor release, Support Package, patch, and build numbers
  • Timestamp
  • Copyright
Note
  • The result is computed at build time, not running time.
  • You can access this URL without authentication in any Web browser.
Request

GET /about

Response

Response type: application/xml or application/json

Example

XML

<about> 
    <title>Web Intelligence - Raylight</title> 
    <version>1.0</version> 
    <vendor>SAP SE</vendor> 
    <build major="14" minor="1" sp="5" patch="8" number="1754">14.1.5.1754</build> 
    <timestamp>20150805.031625</timestamp> 
    <copyright>?©2010 - 2015 SAP SE or an SAP affiliate company. All rights reserved.</copyright> 
</about>

JSON

{"about":
    {"title":"Web Intelligence - Raylight",
     "version":1,
     "vendor":"SAP SE",
     "build": {
         "@major": "14",
         "@minor": "1",
         "@sp": "5",
         "@patch": "8",
         "@number": "1754",
         "$": "14.1.5.1754"
         },
     "timestamp":"20150805.031625",
     "copyright":"?©2010 - 2015 SAP SE or an SAP affiliate company. All rights reserved."
    }
}