Lodol Docs

Monday.com

API actions for the Monday.com integration.

Monday.com

Create and manage Monday.com items with a personal API token.


Add update

Add an update (comment) to a Monday.com item.

Parameters

ParameterTypeRequiredDescription
item_idstringYesMonday.com item ID to post the update on.
update_textstringYesUpdate text/body to post.

Response

{
  "body": "Update text",
  "id": "update123"
}

Create item

Create a new item in a Monday.com board.

Parameters

ParameterTypeRequiredDescription
board_idstringYesThe board ID.
item_namestringYesThe name of the new item.
group_idstringNoOptional group ID to place the item in.
column_valuesstringNoOptional JSON string of column values.

Response

{
  "id": "item123",
  "name": "New Item"
}

List board items

List all items in a Monday.com board.

Parameters

ParameterTypeRequiredDescription
board_idstringYesThe board ID.

Response

{
  "items": [
    {
      "id": "item1",
      "name": "Task 1",
      "state": "active"
    }
  ]
}

List boards

List all boards accessible with the API token.

Response

{
  "boards": [
    {
      "id": "123",
      "name": "My Board",
      "workspace": "Main"
    }
  ]
}

List users

List all users in the Monday.com account.

Response

{
  "users": [
    {
      "email": "john@example.com",
      "id": "user1",
      "name": "John Doe"
    }
  ]
}

Update item status

Update the status column of an item in a Monday.com board.

Parameters

ParameterTypeRequiredDescription
board_idstringYesMonday.com board ID.
item_idstringYesMonday.com item ID to update.
column_idstringYesColumn ID of the status column to update.
labelstringYesLabel/value to set for the status column.

Response

{
  "id": "item123",
  "name": "Task"
}

On this page