Monday
Manage Monday.com boards, items, and groups
Integrate with Monday.com to list boards, get board details, fetch and search items, create and update items, archive or delete items, create subitems, move items between groups, add updates, and create groups.
List boards from your Monday.com account
| Parameter | Type | Required | Description |
|---|
limit | number | No | Maximum number of boards to return (default 25, max 500) |
page | number | No | Page number for pagination (starts at 1) |
| Parameter | Type | Description |
|---|
boards | array | List of Monday.com boards |
↳ id | string | Board ID |
↳ name | string | Board name |
↳ description | string | Board description |
↳ state | string | Board state (active, archived, deleted) |
↳ boardKind | string | Board kind (public, private, share) |
↳ itemsCount | number | Number of items on the board |
↳ url | string | Board URL |
↳ updatedAt | string | Last updated timestamp |
count | number | Number of boards returned |
Get a specific Monday.com board with its groups and columns
| Parameter | Type | Required | Description |
|---|
boardId | string | Yes | The ID of the board to retrieve |
| Parameter | Type | Description |
|---|
board | json | Board details |
↳ id | string | Board ID |
↳ name | string | Board name |
↳ description | string | Board description |
↳ state | string | Board state |
↳ boardKind | string | Board kind (public, private, share) |
↳ itemsCount | number | Number of items |
↳ url | string | Board URL |
↳ updatedAt | string | Last updated timestamp |
groups | array | Groups on the board |
↳ id | string | Group ID |
↳ title | string | Group title |
↳ color | string | Group color (hex) |
↳ archived | boolean | Whether the group is archived |
↳ deleted | boolean | Whether the group is deleted |
↳ position | string | Group position |
columns | array | Columns on the board |
↳ id | string | Column ID |
↳ title | string | Column title |
↳ type | string | Column type |
Get a specific item by ID from Monday.com
| Parameter | Type | Required | Description |
|---|
itemId | string | Yes | The ID of the item to retrieve |
| Parameter | Type | Description |
|---|
item | json | The requested item |
↳ id | string | Item ID |
↳ name | string | Item name |
↳ state | string | Item state |
↳ boardId | string | Board ID |
↳ groupId | string | Group ID |
↳ groupTitle | string | Group title |
↳ columnValues | array | Column values |
↳ id | string | Column ID |
↳ text | string | Text value |
↳ value | string | Raw JSON value |
↳ type | string | Column type |
↳ createdAt | string | Creation timestamp |
↳ updatedAt | string | Last updated timestamp |
↳ url | string | Item URL |
Get items from a Monday.com board
| Parameter | Type | Required | Description |
|---|
boardId | string | Yes | The ID of the board to get items from |
groupId | string | No | Filter items by group ID |
limit | number | No | Maximum number of items to return (default 25, max 500) |
| Parameter | Type | Description |
|---|
items | array | List of items from the board |
↳ id | string | Item ID |
↳ name | string | Item name |
↳ state | string | Item state (active, archived, deleted) |
↳ boardId | string | Board ID |
↳ groupId | string | Group ID |
↳ groupTitle | string | Group title |
↳ columnValues | array | Column values for the item |
↳ id | string | Column ID |
↳ text | string | Human-readable text value |
↳ value | string | Raw JSON value |
↳ type | string | Column type |
↳ createdAt | string | Creation timestamp |
↳ updatedAt | string | Last updated timestamp |
↳ url | string | Item URL |
count | number | Number of items returned |
Search for items on a Monday.com board by column values
| Parameter | Type | Required | Description |
|---|
boardId | string | Yes | The ID of the board to search |
columns | string | Yes | JSON array of column filters, e.g. [{"column_id":"status","column_values":["Done"]}] |
limit | number | No | Maximum number of items to return (default 25, max 500) |
cursor | string | No | Pagination cursor from a previous search response |
| Parameter | Type | Description |
|---|
items | array | Matching items |
↳ id | string | Item ID |
↳ name | string | Item name |
↳ state | string | Item state |
↳ boardId | string | Board ID |
↳ groupId | string | Group ID |
↳ groupTitle | string | Group title |
↳ columnValues | array | Column values |
↳ id | string | Column ID |
↳ text | string | Text value |
↳ value | string | Raw JSON value |
↳ type | string | Column type |
↳ createdAt | string | Creation timestamp |
↳ updatedAt | string | Last updated timestamp |
↳ url | string | Item URL |
count | number | Number of items returned |
cursor | string | Pagination cursor for fetching the next page |
Create a new item on a Monday.com board
| Parameter | Type | Required | Description |
|---|
boardId | string | Yes | The ID of the board to create the item on |
itemName | string | Yes | The name of the new item |
groupId | string | No | The group ID to create the item in |
columnValues | string | No | JSON string of column values to set (e.g., {"status":"Done","date":"2024-01-01"}) |
| Parameter | Type | Description |
|---|
item | json | The created item |
↳ id | string | Item ID |
↳ name | string | Item name |
↳ state | string | Item state |
↳ boardId | string | Board ID |
↳ groupId | string | Group ID |
↳ groupTitle | string | Group title |
↳ columnValues | array | Column values |
↳ id | string | Column ID |
↳ text | string | Text value |
↳ value | string | Raw JSON value |
↳ type | string | Column type |
↳ createdAt | string | Creation timestamp |
↳ updatedAt | string | Last updated timestamp |
↳ url | string | Item URL |
Update column values of an item on a Monday.com board
| Parameter | Type | Required | Description |
|---|
boardId | string | Yes | The ID of the board containing the item |
itemId | string | Yes | The ID of the item to update |
columnValues | string | Yes | JSON string of column values to update (e.g., {"status":"Done","date":"2024-01-01"}) |
| Parameter | Type | Description |
|---|
item | json | The updated item |
↳ id | string | Item ID |
↳ name | string | Item name |
↳ state | string | Item state |
↳ boardId | string | Board ID |
↳ groupId | string | Group ID |
↳ groupTitle | string | Group title |
↳ columnValues | array | Column values |
↳ id | string | Column ID |
↳ text | string | Text value |
↳ value | string | Raw JSON value |
↳ type | string | Column type |
↳ createdAt | string | Creation timestamp |
↳ updatedAt | string | Last updated timestamp |
↳ url | string | Item URL |
Delete an item from a Monday.com board
| Parameter | Type | Required | Description |
|---|
itemId | string | Yes | The ID of the item to delete |
| Parameter | Type | Description |
|---|
id | string | The ID of the deleted item |
Archive an item on a Monday.com board
| Parameter | Type | Required | Description |
|---|
itemId | string | Yes | The ID of the item to archive |
| Parameter | Type | Description |
|---|
id | string | The ID of the archived item |
Move an item to a different group on a Monday.com board
| Parameter | Type | Required | Description |
|---|
itemId | string | Yes | The ID of the item to move |
groupId | string | Yes | The ID of the target group |
| Parameter | Type | Description |
|---|
item | json | The moved item with updated group |
↳ id | string | Item ID |
↳ name | string | Item name |
↳ state | string | Item state |
↳ boardId | string | Board ID |
↳ groupId | string | Group ID |
↳ groupTitle | string | Group title |
↳ columnValues | array | Column values |
↳ id | string | Column ID |
↳ text | string | Text value |
↳ value | string | Raw JSON value |
↳ type | string | Column type |
↳ createdAt | string | Creation timestamp |
↳ updatedAt | string | Last updated timestamp |
↳ url | string | Item URL |
Create a subitem under a parent item on Monday.com
| Parameter | Type | Required | Description |
|---|
parentItemId | string | Yes | The ID of the parent item |
itemName | string | Yes | The name of the new subitem |
columnValues | string | No | JSON string of column values to set |
| Parameter | Type | Description |
|---|
item | json | The created subitem |
↳ id | string | Item ID |
↳ name | string | Item name |
↳ state | string | Item state |
↳ boardId | string | Board ID |
↳ groupId | string | Group ID |
↳ groupTitle | string | Group title |
↳ columnValues | array | Column values |
↳ id | string | Column ID |
↳ text | string | Text value |
↳ value | string | Raw JSON value |
↳ type | string | Column type |
↳ createdAt | string | Creation timestamp |
↳ updatedAt | string | Last updated timestamp |
↳ url | string | Item URL |
Add an update (comment) to a Monday.com item
| Parameter | Type | Required | Description |
|---|
itemId | string | Yes | The ID of the item to add the update to |
body | string | Yes | The update text content (supports HTML) |
| Parameter | Type | Description |
|---|
update | json | The created update |
↳ id | string | Update ID |
↳ body | string | Update body (HTML) |
↳ textBody | string | Plain text body |
↳ createdAt | string | Creation timestamp |
↳ creatorId | string | Creator user ID |
↳ itemId | string | Item ID |
Create a new group on a Monday.com board
| Parameter | Type | Required | Description |
|---|
boardId | string | Yes | The ID of the board to create the group on |
groupName | string | Yes | The name of the new group (max 255 characters) |
groupColor | string | No | The group color as a hex code (e.g., "#ff642e") |
| Parameter | Type | Description |
|---|
group | json | The created group |
↳ id | string | Group ID |
↳ title | string | Group title |
↳ color | string | Group color (hex) |
↳ archived | boolean | Whether archived |
↳ deleted | boolean | Whether deleted |
↳ position | string | Group position |