write_comment
Add comments to BAND posts using band and post identifiers with specified content to engage with group discussions.
Instructions
Write a comment to BAND post.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
band_key | Yes | band identifier | |
body | Yes | comment content | |
post_key | Yes | post identifier |
Input Schema (JSON Schema)
{
"properties": {
"band_key": {
"description": "band identifier",
"title": "Band Key",
"type": "string"
},
"body": {
"description": "comment content",
"title": "Body",
"type": "string"
},
"post_key": {
"description": "post identifier",
"title": "Post Key",
"type": "string"
}
},
"required": [
"band_key",
"post_key",
"body"
],
"type": "object"
}