New `move_item_to_board` mutation
July 7th, 2023
The new move_item_to_board
mutation allows you to easily move an item between boards via the API. If an item has subitems, they will also move with the item. Please note that if you do not provide column mapping, the system will try to map the item according to the column name and type.
The mutation is only available in API versions 2023-10
and later!
Sample mutation
mutation {
move_item_to_board (board_id:1234567890, group_id: "new_group", item_id:9876543210) {
id
}
}