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
Name | Required | Description | Default |
---|---|---|---|
cmsLocaleId | No | ||
collection_id | Yes | ||
limit | No | ||
name | No | ||
offset | No | ||
slug | No | ||
sortBy | No | ||
sortOrder | No |
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"
}