remove_post
Delete a specific post from a BAND group using the post identifier and band identifier to manage content and maintain group organization.
Instructions
Delete a post from BAND.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
band_key | Yes | band identifier | |
post_key | Yes | post identifier to delete |
Input Schema (JSON Schema)
{
"properties": {
"band_key": {
"description": "band identifier",
"title": "Band Key",
"type": "string"
},
"post_key": {
"description": "post identifier to delete",
"title": "Post Key",
"type": "string"
}
},
"required": [
"band_key",
"post_key"
],
"type": "object"
}