update-article
Modify Shopify blog articles by updating titles, content, summary, tags, and author details using the article’s GID for precise edits.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
articleId | Yes | The GID of the article to update (e.g., "gid://shopify/Article/1234567890") | |
author | No | ||
body | No | ||
summary | No | ||
tags | No | ||
title | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"articleId": {
"description": "The GID of the article to update (e.g., \"gid://shopify/Article/1234567890\")",
"minLength": 1,
"type": "string"
},
"author": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"body": {
"type": "string"
},
"summary": {
"type": "string"
},
"tags": {
"items": {
"type": "string"
},
"type": "array"
},
"title": {
"type": "string"
}
},
"required": [
"articleId"
],
"type": "object"
}