IntegrationsNotionActions
List Notion block children
List direct children of a Notion block or page for recursive content reads.
blocks.children.list · Notion · v1
Details
Scopes
read_content
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
block_id | string | Yes | minLength 1; maxLength 64 |
start_cursor | string | No | minLength 1; maxLength 512 |
page_size | integer | No | minimum 1; maximum 100 |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
results | array<object> | Yes | maxItems 100 |
results[] | object | Yes | additionalProperties false |
results[].id | string | Yes | minLength 1; maxLength 64 |
results[].type | string | Yes | minLength 1; maxLength 64 |
results[].has_children | boolean | Yes | — |
results[].in_trash | boolean | No | — |
results[].created_at | string | No | minLength 1; maxLength 64 |
results[].updated_at | string | No | minLength 1; maxLength 64 |
results[].plain_text | string | No | maxLength 4096 |
results[].url | string | No | maxLength 2048 |
results[].checked | boolean | No | — |
results[].language | string | No | maxLength 64 |
results[].child_page_title | string | No | maxLength 2000 |
results[].child_data_source_title | string | No | maxLength 2000 |
results[].table_cells | array<string> | No | maxItems 100 |
results[].table_cells[] | string | Yes | maxLength 2000 |
results[].caption | string | No | maxLength 2000 |
results[].synced_from_block_id | string | No | minLength 1; maxLength 64 |
results[].meeting_notes_summary_block_id | string | No | minLength 1; maxLength 64 |
results[].meeting_notes_notes_block_id | string | No | minLength 1; maxLength 64 |
results[].meeting_notes_transcript_block_id | string | No | minLength 1; maxLength 64 |
results[].meeting_notes_status | string | No | maxLength 64 |
next_cursor | string | No | minLength 1; maxLength 512 |
has_more | boolean | No | — |
Raw schema
Input
{
"type": "object",
"additionalProperties": false,
"properties": {
"block_id": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"start_cursor": {
"type": "string",
"minLength": 1,
"maxLength": 512
},
"page_size": {
"type": "integer",
"minimum": 1,
"maximum": 100
}
},
"required": [
"block_id"
]
}Output
{
"type": "object",
"additionalProperties": false,
"properties": {
"results": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"type": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"has_children": {
"type": "boolean"
},
"in_trash": {
"type": "boolean"
},
"created_at": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"updated_at": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"plain_text": {
"type": "string",
"maxLength": 4096
},
"url": {
"type": "string",
"maxLength": 2048
},
"checked": {
"type": "boolean"
},
"language": {
"type": "string",
"maxLength": 64
},
"child_page_title": {
"type": "string",
"maxLength": 2000
},
"child_data_source_title": {
"type": "string",
"maxLength": 2000
},
"table_cells": {
"type": "array",
"items": {
"type": "string",
"maxLength": 2000
},
"maxItems": 100
},
"caption": {
"type": "string",
"maxLength": 2000
},
"synced_from_block_id": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"meeting_notes_summary_block_id": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"meeting_notes_notes_block_id": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"meeting_notes_transcript_block_id": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"meeting_notes_status": {
"type": "string",
"maxLength": 64
}
},
"required": [
"id",
"type",
"has_children"
]
},
"maxItems": 100
},
"next_cursor": {
"type": "string",
"minLength": 1,
"maxLength": 512
},
"has_more": {
"type": "boolean"
}
},
"required": [
"results"
]
}