pages_update_static_content
Update static content elements on Webflow pages by modifying node text or property overrides for specified locale and page ID.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
localeId | Yes | ||
nodes | Yes | ||
page_id | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"localeId": {
"type": "string"
},
"nodes": {
"items": {
"anyOf": [
{
"additionalProperties": false,
"properties": {
"nodeId": {
"type": "string"
},
"text": {
"type": "string"
}
},
"required": [
"nodeId",
"text"
],
"type": "object"
},
{
"additionalProperties": false,
"properties": {
"nodeId": {
"type": "string"
},
"propertyOverrides": {
"items": {
"additionalProperties": false,
"properties": {
"propertyId": {
"type": "string"
},
"text": {
"type": "string"
}
},
"required": [
"propertyId",
"text"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"nodeId",
"propertyOverrides"
],
"type": "object"
}
]
},
"type": "array"
},
"page_id": {
"type": "string"
}
},
"required": [
"page_id",
"localeId",
"nodes"
],
"type": "object"
}