add-magazine-note
Add articles to magazines on note.com by specifying magazine and article IDs for content organization and management.
Instructions
マガジンに記事を追加する
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| magazineId | Yes | マガジンID(例: mxxxx) | |
| noteId | Yes | 記事ID(例: nxxxx) |
Input Schema (JSON Schema)
{
"properties": {
"magazineId": {
"description": "マガジンID(例: mxxxx)",
"type": "string"
},
"noteId": {
"description": "記事ID(例: nxxxx)",
"type": "string"
}
},
"required": [
"magazineId",
"noteId"
],
"type": "object"
}