monday-create-doc
Generate documents in Monday.com by specifying a workspace with document type or a board with column and item details. Organize content directly within your workflow.
Instructions
Create a new document in Monday.com. Specify either workspace_id (with kind) or board_id (with column_id and item_id) as the location.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
board_id | No | Board ID to create the document in (required if using board as location). | |
column_id | No | Column ID for the board location (required if using board_id). | |
item_id | No | Item ID for the board location (required if using board_id). | |
kind | No | Kind of document (private, public, share). Required if using workspace_id. | |
title | Yes | Title of the document to create. | |
workspace_id | No | Workspace ID to create the document in (required if using workspace as location). |
Input Schema (JSON Schema)
{
"oneOf": [
{
"required": [
"workspace_id",
"kind"
]
},
{
"required": [
"board_id",
"column_id",
"item_id"
]
}
],
"properties": {
"board_id": {
"description": "Board ID to create the document in (required if using board as location).",
"type": "integer"
},
"column_id": {
"description": "Column ID for the board location (required if using board_id).",
"type": "string"
},
"item_id": {
"description": "Item ID for the board location (required if using board_id).",
"type": "integer"
},
"kind": {
"description": "Kind of document (private, public, share). Required if using workspace_id.",
"type": "string"
},
"title": {
"description": "Title of the document to create.",
"type": "string"
},
"workspace_id": {
"description": "Workspace ID to create the document in (required if using workspace as location).",
"type": "integer"
}
},
"required": [
"title"
],
"type": "object"
}