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:
The publishedAt property is not null
The publishedFrom property is null, or the current time is after the publishedFrom date/time
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.