Webflow

Official

collections_items_list_items

Retrieve and organize items from a Webflow CMS collection by specifying collection ID, sorting options, and pagination parameters for efficient data management.

Input Schema

NameRequiredDescriptionDefault
cmsLocaleIdNo
collection_idYes
limitNo
nameNo
offsetNo
slugNo
sortByNo
sortOrderNo

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "cmsLocaleId": { "type": "string" }, "collection_id": { "type": "string" }, "limit": { "type": "number" }, "name": { "type": "string" }, "offset": { "type": "number" }, "slug": { "type": "string" }, "sortBy": { "enum": [ "lastPublished", "name", "slug" ], "type": "string" }, "sortOrder": { "enum": [ "asc", "desc" ], "type": "string" } }, "required": [ "collection_id" ], "type": "object" }
ID: qau6rnloio