mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-03-23 21:29:38 +02:00
2.3 KiB
2.3 KiB
sidebar_position |
---|
1 |
Create block
Creates a new block based on an existing block
Function CreateBlock(Val Token, Val Parent, Val Block, Val InsertAfter = "") Export
Parameter | CLI option | Type | Description |
---|---|---|---|
Token | --token | String | Token |
Parent | --page | String | Parent block or page ID |
Block | --block | String, Map Of KeyAndValue | Block ID or block sample itself |
InsertAfter | --prev | String | Block ID after which to insert the new one |
Returns: Map Of KeyAndValue - Serialized JSON response from Notion
Token = "secret_9RsfMrRMqZwqp0Zl0B...";
Parent = "5dd94c34fab04bff986b7511c0779f77";
Block = "d7021bdd15b944ababcb02bd2b1a5f6a";
BlockData = OPI_Notion.ReturnBlock(Token, Block);
Result = OPI_Notion.CreateBlock(Token, Parent, BlockData);
oint notion CreateBlock --token "secret_9RsfMrRMqZwqp0Zl0B..." --page "5dd94c34fab04bff9..." --block %block% --prev %prev%
{
"object": "list",
"results": [
{
"object": "block",
"id": "11382aa7-fc4e-811d-933b-feb03c25e014",
"parent": {
"type": "page_id",
"page_id": "5dd94c34-fab0-4bff-986b-7511c0779f77"
},
"created_time": "2024-10-02T14:42:00Z",
"last_edited_time": "2024-10-02T14:42:00Z",
"created_by": {
"object": "user",
"id": "8b07422e-eeea-40d1-8d5e-c784211825b0"
},
"last_edited_by": {
"object": "user",
"id": "8b07422e-eeea-40d1-8d5e-c784211825b0"
},
"has_children": false,
"archived": false,
"in_trash": false,
"type": "to_do",
"to_do": {
"rich_text": [
{
"type": "text",
"text": {
"content": "YoYO",
"link": null
},
"annotations": {
"bold": false,
"italic": false,
"strikethrough": false,
"underline": false,
"code": false,
"color": "default"
},
"plain_text": "YoYO",
"href": null
}
],
"checked": false,
"color": "default"
}
}
],
"next_cursor": null,
"has_more": false,
"type": "block",
"block": {},
"request_id": "ce61b58b-cdd3-48c5-913a-ff438e0c5729"
}