fc_bulk_delete_posts
Remove multiple posts simultaneously from your FluentCommunity platform by specifying post IDs to manage content efficiently.
Instructions
Delete multiple posts at once
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| post_ids | Yes | Array of post IDs to delete |
Input Schema (JSON Schema)
{
"properties": {
"post_ids": {
"description": "Array of post IDs to delete",
"items": {
"type": "number"
},
"type": "array"
}
},
"required": [
"post_ids"
],
"type": "object"
}