create_comment
Post comments on Qiita articles using the item ID and Markdown-formatted text to engage with the developer community.
Instructions
指定された記事にコメントを作成します
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| body | Yes | コメントの本文(Markdown形式) | |
| itemId | Yes | 記事ID |
Input Schema (JSON Schema)
{
"properties": {
"body": {
"description": "コメントの本文(Markdown形式)",
"type": "string"
},
"itemId": {
"description": "記事ID",
"type": "string"
}
},
"required": [
"itemId",
"body"
],
"type": "object"
}