write_post
Create and publish content to BAND groups using the Band API. Specify the target group, post content, and optional push notification settings.
Instructions
Write a post to BAND.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
band_key | Yes | band identifier | |
content | Yes | post content | |
do_push | No | whether to send push notification |
Input Schema (JSON Schema)
{
"properties": {
"band_key": {
"description": "band identifier",
"title": "Band Key",
"type": "string"
},
"content": {
"description": "post content",
"title": "Content",
"type": "string"
},
"do_push": {
"description": "whether to send push notification",
"title": "Do Push",
"type": "boolean"
}
},
"required": [
"band_key",
"content"
],
"type": "object"
}