permissions
Retrieve post permission details from BAND groups to check write permissions for posting, commenting, and content deletion operations.
Instructions
Get post permission information from BAND.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
band_key | Yes | Band ID | |
permissions | Yes | Comma-separated permission types: posting (Post write permission), commenting (Comment write permission), contents_deletion (Post/Comment delete permission) |
Input Schema (JSON Schema)
{
"properties": {
"band_key": {
"description": "Band ID",
"title": "Band ID",
"type": "string"
},
"permissions": {
"description": "Comma-separated permission types: posting (Post write permission), commenting (Comment write permission), contents_deletion (Post/Comment delete permission)",
"title": "Permissions",
"type": "string"
}
},
"required": [
"band_key",
"permissions"
],
"type": "object"
}