collections_items_create_item
Create and add new items to a specific collection in Webflow using the collection ID and item details, including field data, CMS locale, and publication status.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
collection_id | Yes | ||
request | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"collection_id": {
"type": "string"
},
"request": {
"additionalProperties": false,
"properties": {
"items": {
"items": {
"additionalProperties": false,
"properties": {
"cmsLocaleId": {
"type": "string"
},
"createdOn": {
"type": "string"
},
"fieldData": {
"allOf": [
{
"additionalProperties": {},
"type": "object"
},
{
"properties": {
"name": {
"type": "string"
},
"slug": {
"type": "string"
}
},
"required": [
"name",
"slug"
],
"type": "object"
}
]
},
"id": {
"type": "string"
},
"isArchived": {
"type": "boolean"
},
"isDraft": {
"type": "boolean"
},
"lastPublished": {
"type": "string"
},
"lastUpdated": {
"type": "string"
}
},
"required": [
"fieldData"
],
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"required": [
"collection_id",
"request"
],
"type": "object"
}