append-block-children
Add multiple blocks to a parent block or page in Notion by specifying the parent block ID and a list of child blocks. Optionally, insert blocks after a specific existing block using its ID.
Instructions
Append blocks to a parent block
Input Schema
Name | Required | Description | Default |
---|---|---|---|
after | No | Optional ID of an existing block to append after | |
block_id | Yes | ID of the parent block (page or block) | |
children | Yes | List of block objects to append |
Input Schema (JSON Schema)
{
"properties": {
"after": {
"description": "Optional ID of an existing block to append after",
"type": "string"
},
"block_id": {
"description": "ID of the parent block (page or block)",
"type": "string"
},
"children": {
"description": "List of block objects to append",
"type": "array"
}
},
"required": [
"block_id",
"children"
],
"type": "object"
}