update-page
Edit and update Shopify store pages, including title, content, SEO details, and publication status, using the GraphQL API for precise page management.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
body | No | ||
bodyHtml | No | ||
pageId | Yes | The GID of the page to update (e.g., "gid://shopify/Page/1234567890") | |
published | No | ||
seo | No | ||
title | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"body": {
"type": "string"
},
"bodyHtml": {
"type": "string"
},
"pageId": {
"description": "The GID of the page to update (e.g., \"gid://shopify/Page/1234567890\")",
"minLength": 1,
"type": "string"
},
"published": {
"type": "boolean"
},
"seo": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"title": {
"type": "string"
}
},
"type": "object"
},
"title": {
"type": "string"
}
},
"required": [
"pageId"
],
"type": "object"
}