Skip to main content
The collections module manages a user’s saved-content collections. Every user has a single root collection, under which they can nest sub-collections and into which they can save entities.
Collections are always scoped to a specific user. Pass that user’s Sublay ID as userId on every call — your service key performs the operation on behalf of that named user.

fetchRootCollection

Fetches a user’s root collection, creating it on first access if it does not yet exist.
string
required
The Sublay user ID whose root collection to fetch.
ReturnsPromise<Collection>

fetchSubCollections

Fetches the direct child collections nested under a given collection.
string
required
The parent collection ID.
string
required
The Sublay user ID who owns the collection.
ReturnsPromise<Collection[]>

createNewCollection

Creates a new sub-collection under an existing parent collection.
string
required
The parent collection under which to create the sub-collection.
string
required
The name of the new collection.
string
required
The Sublay user ID who will own the collection.
ReturnsPromise<Collection>

fetchCollectionEntities

Fetches a paginated list of entities saved in a collection.
string
required
The collection ID.
string
required
The Sublay user ID who owns the collection.
number
Page number (1-indexed). Defaults to 1.
number
Results per page. Defaults to 20.
string
Sort order: "new", "added" (when saved), "top", or "hot".
string
Sort direction: "asc" or "desc".
string
Comma-separated list of associations to populate (e.g. "user").
ReturnsPromise<PaginatedResponse<Entity>>

addEntityToCollection

Saves an entity into a collection.
string
required
The collection to add the entity to.
string
required
The Sublay entity ID to save.
string
required
The Sublay user ID who owns the collection.
ReturnsPromise<Collection>

removeEntityFromCollection

Removes an entity from a collection.
string
required
The collection to remove the entity from.
string
required
The Sublay entity ID to remove.
string
required
The Sublay user ID who owns the collection.
ReturnsPromise<void>

updateCollection

Renames a collection.
string
required
The collection ID to update.
string
required
The Sublay user ID who owns the collection.
string
The new collection name.
ReturnsPromise<Collection>

deleteCollection

Deletes a collection.
string
required
The collection ID to delete.
string
required
The Sublay user ID who owns the collection.
ReturnsPromise<void>