get_comments
Retrieve comments from a specific BAND post to view community discussions and responses, using the post identifier and band key.
Instructions
Get comments from a specific post in BAND.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
band_key | Yes | band identifier | |
post_key | Yes | post identifier | |
sort | No | sort order for comments |
Input Schema (JSON Schema)
{
"properties": {
"band_key": {
"description": "band identifier",
"title": "Band Key",
"type": "string"
},
"post_key": {
"description": "post identifier",
"title": "Post Key",
"type": "string"
},
"sort": {
"description": "sort order for comments",
"title": "Sort",
"type": "string"
}
},
"required": [
"band_key",
"post_key"
],
"type": "object"
}