collections_items_publish_items
Publish selected items from a specified collection in Webflow to make them live on your site. Streamline content updates and ensure accurate data display.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
collection_id | Yes | ||
itemIds | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"collection_id": {
"type": "string"
},
"itemIds": {
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"collection_id",
"itemIds"
],
"type": "object"
}