update_item
Modify existing articles on Qiita by updating titles, content in Markdown format, tags, and privacy settings using the article ID.
Instructions
既存の記事を更新します
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| body | Yes | 記事の本文(Markdown形式) | |
| itemId | Yes | 記事ID | |
| private | No | 非公開記事かどうか | |
| tags | Yes | タグの配列 | |
| title | Yes | 記事のタイトル |
Input Schema (JSON Schema)
{
"properties": {
"body": {
"description": "記事の本文(Markdown形式)",
"type": "string"
},
"itemId": {
"description": "記事ID",
"type": "string"
},
"private": {
"default": false,
"description": "非公開記事かどうか",
"type": "boolean"
},
"tags": {
"description": "タグの配列",
"items": {
"properties": {
"name": {
"description": "タグ名",
"type": "string"
},
"versions": {
"description": "タグのバージョン",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"name",
"versions"
],
"type": "object"
},
"type": "array"
},
"title": {
"description": "記事のタイトル",
"type": "string"
}
},
"required": [
"itemId",
"title",
"body",
"tags"
],
"type": "object"
}