monday-add-doc-block
Add custom content blocks to Monday.com documents, supporting various types like text, lists, headings, and dividers, with optional positioning after specific blocks.
Instructions
Add a block to a document
Input Schema
Name | Required | Description | Default |
---|---|---|---|
after_block_id | No | Optional ID of the block to add this block after. | |
block_type | Yes | Type of block to add (normal_text, bullet_list, numbered_list, heading, divider, etc.). | |
content | Yes | Content of the block to add. | |
doc_id | Yes | ID of the Monday.com document to add a block to. |
Input Schema (JSON Schema)
{
"properties": {
"after_block_id": {
"description": "Optional ID of the block to add this block after.",
"type": "string"
},
"block_type": {
"description": "Type of block to add (normal_text, bullet_list, numbered_list, heading, divider, etc.).",
"type": "string"
},
"content": {
"description": "Content of the block to add.",
"type": "string"
},
"doc_id": {
"description": "ID of the Monday.com document to add a block to.",
"type": "string"
}
},
"required": [
"doc_id",
"block_type",
"content"
],
"type": "object"
}