Getting the List of SAP BW Connections

Returns the list of available SAP BW connections. You can only see the connections that you have authorization to see.

Request

GET <webiURL>/bwconnections?offset={offset}&limit={limit}

Where:

  • {offset} is the offset from the beginning of the list. Default value is 0.
  • {limit} is the maximum number of connections to return. Default value is 10.
Response

Response type: application/xml or application/json

Response body: the list of BW connections that you have the authorization to see/access.

Example

<bwconnections>
    <bwconnection type="Cube">
        <id>7052</id>
        <cuid>AdDDU67.DyxBkOgpzjDJn30</cuid>
        <name>Adventure Works MSAS2005</name>
        <folderId>7131</folderId>
    </bwconnection>
    <bwconnection type="Cube">
        <id>11540</id>
        <cuid>AbUAJD7zVpZFgy2jQQNMyI8</cuid>
        <name>AdventureWorks</name>
        <folderId>11484</folderId>
    </bwconnection>
    <bwconnection type="Cube">
        <id>11537</id>
        <cuid>AROnvrBXn1tOpsXj_jPPtYo</cuid>
        <name>ADW</name>
        <folderId>11484</folderId>
    </bwconnection>
    ...
    <bwconnection type="Query">
        <id>7268</id>
        <cuid>AUeWmURZfzVKjnpwfTWVxvM</cuid>
        <name>BICS_Query</name>
        <folderId>4066</folderId>
    </bwconnection>
    <bwconnection type="System">
        <id>7039</id>
        <cuid>AY2UQVyb3WRLioC8GBg5Vi0</cuid>
        <name>BICS_Server</name>
        <folderId>4066</folderId>
    </bwconnection>
</bwconnections>