Getting the List of Universes (Web Intelligence)

Gets the list of universes a user has access to, depending on user rights.

Request

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

Where:

  • {type} indicates the type of the universe. Possible values are unv, unx and all. The default value is all. This parameter is optional.
  • {offset} indicates the position in the list, from which universes are returned. {offset} must be greater than or equal to 0. The default value is 0. This parameter is optional.
  • {limit} indicates the number of universes that you can list on one page. {limit} range is [1, 50]. The default value is 10.
Response

Response type: application/xml or application/json

Response body: the list of universes for a user with the following information:

  • <id>
  • <cuid>
  • <name>
  • <type>
  • <folderId>

Example

GET <webiURL>/universes?type=unx&limit=2

<universes>
    <universe>
        <id>6773</id>
        <cuid>AXyRzvmRrJxLqUm6_Jbf7lE</cuid>
        <name>efashion.unx</name>
        <type>unx</type>
        <folderId>6771</folderId>
    </universe>
    <universe>
        <id>5612</id>
        <cuid>AYCKrid6ngFGvrKlwVfZKj4</cuid>
        <name>Salary.unv</name>
        <type>unv</type>
        <folderId>509</folderId>
    </universe>
    ...
</universes>