1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2024-12-18 23:48:56 +02:00
OpenIntegrations/docs/en/md/Notion/Blocks-managment/Delete-block.md
2024-06-05 10:19:46 +00:00

89 lines
1.6 KiB
Markdown

---
sidebar_position: 4
---
# Delete block
Deletes block by ID
*Function DeleteBlock(Val Token, Val BlockID) Export*
| Parameter | CLI option | Type | Destination |
|-|-|-|-|
| Token | --token | String | Token |
| BlockID | --block | String | Block ID |
Returns: Key-Value Pair - Serialized JSON response from Notion
```bsl title="Code example"
Token = "secret_9RsfMrRMqZwqp0Zl0B...";
Block = "ca18df269bd24407852b91c30...";
Response = OPI_Notion.DeleteBlock(Token, BlockID);
Response = OPI_Tools.JSONString(Response);
```
```sh title="CLI command example"
oint notion DeleteBlock --token "secret_9RsfMrRMqZwqp0Zl0B..." --block %block%
```
```json title="Result"
{
"request_id": "62b95ed2-c9af-4be8-b75a-f6e4f69aef14",
"to_do": {
"color": "default",
"checked": false,
"rich_text": [
{
"plain_text": "Hello",
"annotations": {
"color": "default",
"code": false,
"underline": false,
"strikethrough": false,
"italic": false,
"bold": false
},
"text": {
"link": null,
"content": "Hello"
},
"href": null,
"type": "text"
}
]
},
"type": "to_do",
"archived": true,
"created_by": {
"id": "ed71865a-9891-46bc-86cd-a92aa499cfdb",
"object": "user"
},
"last_edited_time": "2024-01-26T19:43:00.000Z",
"created_time": "2024-01-26T11:03:00.000Z",
"has_children": false,
"parent": {
"page_id": "5dd94c34-fab0-4bff-986b-7511c0779f77",
"type": "page_id"
},
"last_edited_by": {
"id": "8b07422e-eeea-40d1-8d5e-c784211825b0",
"object": "user"
},
"id": "d7021bdd-15b9-44ab-abcb-02bd2b1a5f6a",
"object": "block"
}
```