remove_comment
Delete a comment from BAND by specifying the band, post, and comment identifiers to manage group discussions.
Instructions
Delete a comment from BAND.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
band_key | Yes | band identifier | |
comment_key | Yes | comment identifier to delete | |
post_key | Yes | post identifier |
Input Schema (JSON Schema)
{
"properties": {
"band_key": {
"description": "band identifier",
"title": "Band Key",
"type": "string"
},
"comment_key": {
"description": "comment identifier to delete",
"title": "Comment Key",
"type": "string"
},
"post_key": {
"description": "post identifier",
"title": "Post Key",
"type": "string"
}
},
"required": [
"band_key",
"post_key",
"comment_key"
],
"type": "object"
}