post-draft-note
Publish draft articles to note.com by providing title, body content, and optional tags. Update existing drafts using their ID to manage your content publishing workflow.
Instructions
下書き状態の記事を投稿する
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes | 記事のタイトル | |
| body | Yes | 記事の本文 | |
| tags | No | タグ(最大10個) | |
| id | No | 既存の下書きID(既存の下書きを更新する場合) |
Input Schema (JSON Schema)
{
"properties": {
"body": {
"description": "記事の本文",
"type": "string"
},
"id": {
"description": "既存の下書きID(既存の下書きを更新する場合)",
"type": "string"
},
"tags": {
"description": "タグ(最大10個)",
"items": {
"type": "string"
},
"type": "array"
},
"title": {
"description": "記事のタイトル",
"type": "string"
}
},
"required": [
"title",
"body"
],
"type": "object"
}