batch_delete_blocks
Remove multiple blocks at once by specifying their IDs, streamlining content cleanup and management in Notion.
Instructions
Delete multiple blocks in a single operation
Input Schema
Name | Required | Description | Default |
---|---|---|---|
blockIds | Yes | Array of block IDs to delete in a single batch |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"blockIds": {
"description": "Array of block IDs to delete in a single batch",
"items": {
"description": "The ID of a block to delete/archive",
"type": "string"
},
"type": "array"
}
},
"required": [
"blockIds"
],
"type": "object"
}