notion-mcp-server

by awkoy
Verified

batch_delete_blocks

Delete multiple blocks in a single operation

Input Schema

NameRequiredDescriptionDefault
blockIdsYesArray 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" }