New `kind` argument on `add_teams_to_board` mutation
December 22nd, 2023
In API versions 2024-01
and later, you can add the kind
argument to an add_teams_to_board
mutation to specify the team's role on the board. If this argument is not used, the team will automatically be added as a subscriber. Check out our documentation for more info!
Example
The following example would add teams 654321 and 123456 to board 1234567890 as owners.
mutation {
add_teams_to_board (board_id: 1234567890, kind: owner, team_ids: [654321, 123456]) {
id
}
}