Getting the List of Universes (Web Intelligence)

Usage

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

Request

GET /universes?type=<type>&offset=<offset>&limit=<limit>

Request type: application/xml or application/json

Query parameters:

  • <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. It 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. Its range is [1, 50]. The default value is 10. This parameter is optional.
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 /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>