esa_create_comment
Add a Markdown-formatted comment to a specific article using the post number, enabling collaborative discussions and feedback through the esa API integration.
Instructions
Post a comment to an article
Input Schema
Name | Required | Description | Default |
---|---|---|---|
body_md | Yes | Comment body (Markdown format) | |
post_number | Yes | Post number to comment on | |
user | No | Poster's screen_name (only team owners can specify) |
Input Schema (JSON Schema)
{
"properties": {
"body_md": {
"description": "Comment body (Markdown format)",
"type": "string"
},
"post_number": {
"description": "Post number to comment on",
"type": "number"
},
"user": {
"description": "Poster's screen_name (only team owners can specify)",
"type": "string"
}
},
"required": [
"post_number",
"body_md"
],
"type": "object"
}