Getting the List of the Universes (Semantic Layer)

Usage

Gets the list of UNX and UNV universes stored in the CMS repository.

The universe list can be displayed on pages.

Request

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

Where:

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

Response type: application/xml

Response body: the list of the universes identified by the following elements:

  • <id>
  • <cuid>
  • <name> in the requested locale
  • <type> (unv or unx)
  • <folderId>, which is the ID of the folder that contains the universe in the CMS repository

Example

GET /universes?offset=0&limit=50

<universes>
    <universe> 
        <id>6773</id> 
        <cuid>AXyRzvmRrJxLqUm6_Jbf7lE</cuid> 
        <name>efashion.unv</name> 
        <type>unv</type> 
        <folderId>6771</folderId> 
    </universe>
    <universe>
        <id>5808</id>
        <cuid>AUW2qRdU0IdPkyhlpZWrxvo</cuid> 
        <name>Warehouse.unx</name> 
        <type>unx</type> 
        <folderId>5807</folderId> 
    </universe>
    ...
</universes>