Skip to main content
Solved

How to intercept a board event?

  • November 10, 2025
  • 1 reply
  • 71 views

Hi !

 

We need to create an automation related to board creation/renaming/archiving/deletion

 

We cannot find api to intercept board creation. only item creation

Best answer by OmerK

Hello ​@realtebo.dma ,

You can create a board via the api. this is an example query:
 

mutation {
create_board(
board_name: "my board"
board_kind: public
) {
id
}
}

or rename it: 

mutation {
update_board(
board_id: 1234567890
board_attribute: name
new_value: "New Board Name"
)
}

You can read more about Boards here

1 reply

OmerK
Forum|alt.badge.img+1
  • monday.com Team Member
  • Answer
  • November 23, 2025

Hello ​@realtebo.dma ,

You can create a board via the api. this is an example query:
 

mutation {
create_board(
board_name: "my board"
board_kind: public
) {
id
}
}

or rename it: 

mutation {
update_board(
board_id: 1234567890
board_attribute: name
new_value: "New Board Name"
)
}

You can read more about Boards here