Custom Collections
Dynamic custom resource collections (e.g. /custom/products, /custom/orders) created on the fly. All mutations persist in your isolated session overlay.
List Active Custom Collections
Returns a summary of all active dynamic custom resource collections in your session sandbox with record counts.
Seed Domain Mock Data Template
Instantly populates pre-built domain collections into your session sandbox with one request (templates: ecommerce, saas, blog, crm).
| Parameter | Type | Description |
|---|---|---|
| template | string | Domain template name ("ecommerce", "saas", "blog", "crm"). |
Query Custom Collection Items
Retrieves a paginated list of items from any dynamic custom collection with search and sorting.
| Parameter | Type | Description |
|---|---|---|
| collection | string | Custom collection name (e.g. products, orders, leads). |
| page | integer | Page number (default 1). |
| limit | integer | Records per page (default 10). |
| q | string | Case-insensitive full-text search term. |
| _sort | string | Field name to sort by. |
| _order | string | Sort direction (asc or desc). |
Get Single Custom Record
Retrieve a single custom collection record by collection name and string or integer ID.
| Parameter | Type | Description |
|---|---|---|
| collection | string | Custom collection name. |
| id | string | Record ID. |
Create Custom Collection Record
Creates a new custom record in any arbitrary collection with automatic ID, createdAt, and updatedAt metadata attachment.
| Parameter | Type | Description |
|---|---|---|
| collection | string | Custom collection name (e.g. products, orders). |
Replace Custom Record (PUT)
Completely replace a custom record inside the specified collection.
| Parameter | Type | Description |
|---|---|---|
| collection | string | Custom collection name. |
| id | string | Record ID to replace. |
Partial Custom Update (PATCH)
Partially merge specific fields into an existing custom collection record.
| Parameter | Type | Description |
|---|---|---|
| collection | string | Custom collection name. |
| id | string | Record ID to update. |
Delete Custom Collection Record
Removes a custom record from your session sandbox collection.
| Parameter | Type | Description |
|---|---|---|
| collection | string | Custom collection name. |
| id | string | Record ID to delete. |