API-update-a-block
Modify or archive a specific block in Notion using its block ID. Update text for supported block types or toggle checked
status for to-do blocks. Restore archived blocks by unarchiving them.
Instructions
Notion | Update a block
Input Schema
Name | Required | Description | Default |
---|---|---|---|
archived | No | Set to true to archive (delete) a block. Set to false to un-archive (restore) a block. | |
block_id | Yes | Identifier for a Notion block | |
type | No | The [block object `type`](ref:block#block-object-keys) value with the properties to be updated. Currently only `text` (for supported block types) and `checked` (for `to_do` blocks) fields can be updated. |
Input Schema (JSON Schema)
{
"$defs": {},
"properties": {
"archived": {
"default": true,
"description": "Set to true to archive (delete) a block. Set to false to un-archive (restore) a block.",
"type": "boolean"
},
"block_id": {
"description": "Identifier for a Notion block",
"type": "string"
},
"type": {
"additionalProperties": true,
"description": "The [block object `type`](ref:block#block-object-keys) value with the properties to be updated. Currently only `text` (for supported block types) and `checked` (for `to_do` blocks) fields can be updated.",
"properties": {},
"type": "object"
}
},
"required": [
"block_id"
],
"type": "object"
}