collections_items_update_items_live
Update live items in Webflow collections by modifying item details such as fields, slugs, and metadata directly within the platform.
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"
}
},
"type": "object"
}
]
},
"id": {
"type": "string"
},
"isArchived": {
"type": "boolean"
},
"isDraft": {
"type": "boolean"
},
"lastPublished": {
"type": "string"
},
"lastUpdated": {
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
},
"type": "array"
}
},
"type": "object"
}
},
"required": [
"collection_id",
"request"
],
"type": "object"
}