Content ======= You can get collections and regions using the two endpoints below. All collections, collection items and regions have a "publish status" set against them. An element is "published" if: 1. The `publishedAt` property is not null 2. The `publishedFrom` property is null, or the current time is after the `publishedFrom` date/time 3. The `publishedTo` property is null, or the current time is before the `publishedTo` date/time If any of the above conditions is not satisfied, that particular element must be considered "not published", and should not be shown to end users. GET /collection/list -------------------- Returns all the available collections. You should check the publish status of each collection and each collection item to decide whether they should show or not. GET /region/list ---------------- Returns all the available regions. You should check the publish status of each region to decide whether they should show or not.