Return child blocks
Returns list of child blocks of parent block
Function ReturnChildBlocks(Val Token, Val BlockID) Export
Parameter | CLI option | Type | Required | Description |
---|---|---|---|---|
Token | --token | String | ✔ | Token |
BlockID | --block | String | ✔ | Parent block ID |
Returns: Map Of KeyAndValue - serialized JSON response from Notion
1C:Enterprise/OneScript code example
Token = "secret_9RsfMrRMqZwqp0Zl0B...";
Block = "14682aa7-fc4e-812a-b09c-c7b1e912d0da";
Result = OPI_Notion.ReturnChildBlocks(Token, Block);
- Bash
- CMD/Bat
oint notion ReturnChildBlocks \
--token "***" \
--block "14682aa7-fc4e-81db-897f-ec2536b538d1"
oint notion ReturnChildBlocks ^
--token "***" ^
--block "14682aa7-fc4e-81db-897f-ec2536b538d1"
Result
{
"object": "list",
"results": [],
"next_cursor": null,
"has_more": false,
"type": "block",
"block": {},
"request_id": "8e767421-eb28-4a76-ab19-60cea883414e"
}