update_comment
Modify existing comments on Qiita articles by providing the comment ID and new content in Markdown format to update your contributions.
Instructions
指定されたコメントを更新します
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| body | Yes | コメントの本文(Markdown形式) | |
| commentId | Yes | コメントID |
Input Schema (JSON Schema)
{
"properties": {
"body": {
"description": "コメントの本文(Markdown形式)",
"type": "string"
},
"commentId": {
"description": "コメントID",
"type": "string"
}
},
"required": [
"commentId",
"body"
],
"type": "object"
}