We changed the response type for the duplicate_item
mutation from a stringified JSON to an item. See the duplicate items mutation for more information.
We added the duplicate_item
mutation method which will duplicate a single item at a time. See the duplicate items mutation for more information.
Added the delete_update
mutation method which will delete an existing update. See the delete an update mutation for more information.
We added the create_workspace
mutation method which will create a new workspace. See the create a workspace mutation for more information.
Added the create_subitem
mutation which will create a new subitem under a specific parent item. See the create subitem mutation for more information.
Added the ability to mutate Connect columns. See the Connect column mutation for more information.
We added two mutations to let you add subscribers and remove subscribers from a board.
- Added the
add_subscribers_to_board
mutation which will add a single or an array of subscribers to a board. See the add subscribers to board mutation for more information. - Add the
delete_subscribers_from_board
mutation which will delete subscribers from a board. See the delete subscribers from board mutation for more information.
We changed exception handling to be better aligned with GraphQL specifications. The following exceptions will now return status code 200
instead of 400
. The error message will be in the “errors” key of the following responses:
InvalidBoardIdException
InvalidColumnIdException
ColumnValueException
ItemNameTooLongException
Boards
We added the views
field for boards
queries that will allow you to query board view attributes for a specific board. See the board views queries for more information.
We added the communication
field for boards queries that will return the Zoom call configuration for the board. See the boards queries fields for more information.
Columns
We added the pos
field for columns queries that will return the column's position on a given board. See the columns fields query for more information.
We added the activity_logs
queries that will show log events on a specific board. See the activity logs queries for more information.