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
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
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
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.