pages_update_page_settings
Modify Webflow page settings such as SEO, openGraph, visibility, and access. Update page properties like slug, title, or locale for improved site management and customization.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
body | Yes | ||
localeId | No | ||
page_id | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"archived": {
"type": "boolean"
},
"canBranch": {
"type": "boolean"
},
"collectionId": {
"type": "string"
},
"createdOn": {
"format": "date-time",
"type": "string"
},
"draft": {
"type": "boolean"
},
"id": {
"type": "string"
},
"isBranch": {
"type": "boolean"
},
"isMembersOnly": {
"type": "boolean"
},
"lastUpdated": {
"format": "date-time",
"type": "string"
},
"localeId": {
"type": "string"
},
"openGraph": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"descriptionCopied": {
"type": "boolean"
},
"title": {
"type": "string"
},
"titleCopied": {
"type": "boolean"
}
},
"type": "object"
},
"parentId": {
"type": "string"
},
"publishedPath": {
"type": "string"
},
"seo": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"title": {
"type": "string"
}
},
"type": "object"
},
"siteId": {
"type": "string"
},
"slug": {
"type": "string"
},
"title": {
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
},
"localeId": {
"type": "string"
},
"page_id": {
"type": "string"
}
},
"required": [
"page_id",
"body"
],
"type": "object"
}