Getting the List of the Universes

Gets the list of the universes stored in the CMS repository.

The universe list can be displayed on pages.

Request

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

Where:

  • {offset} indicates the position in the list, from which universes are returned. {offset} must be greater than or equal to 0. This parameter is optional. The default value is 0.
  • {limit} indicates the number of universes that you can list on one page. {limit} range is [1, 50]. This parameter is optional. The default value is 10.
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> (unx only)
  • <folderId>, which is the ID of the folder that contains the universe in the CMS repository

Example

GET <slURL>/universes?offset=0&limit=50

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