We recently fixed a bug that prevented users from creating a subitem via the API if no subitems were ever made via the web.

The bug fix first verifies that the board doesn’t already have a subitem column and that the user has the required permissions to edit the board structure. If so, the user can then create a board’s first subitem via the API!

We recently added two new webhook events - column_created and item_restored - that enable you to listen for when a column is created or when an item is restored from the trash/archives.

You can now specify the documents you would like to return in a docs query using the object_ids argument. Please note that this is the same ID found in the URL and in the doc column values.

The item_name argument is now required for the create_subitem mutation. If you try to run the mutation without the argument, it will return an error.

We recently added the item_terminology field to the boards object! You can now retrieve the nickname for items on boards using this field. Please note that users can input a custom nickname or select one from a predefined list.

We recently updated our API playground to provide a more intuitive and seamless user experience. This update includes a completely revamped UI, tabs that allow you to open multiple sessions at once, HTTP header support, and history tracking.

Currently, you can only access the new playground through the Developer's Center, but we plan to upgrade the public playground in the next few weeks. Check it out for yourself!

Starting April 15th, 2023, we will deprecate connections from Windows Server 2012 R2, Windows 8.1, or earlier because they use weak ciphers. This update will not impact support for TLS 1.3.

Check out this document to find out which systems this update impacts, how to know if you are affected, and which ciphers you can use!

We recently fixed a bug that now allows you to clear a dropdown column by sending an empty array in one of the following mutations:

mutation {
  change_multiple_column_values (item_id: 123456789, board_id: 987654321, column_values: "{\"dropdown\":{\"ids\":[]}}") {
    column_values (ids: dropdown) {
      id
      value
    }
  }
}
mutation {
  change_multiple_column_values (item_id: 123456789, board_id: 987654321, column_values: "{\"dropdown\":{\"labels\":[]}}") {
    column_values (ids: dropdown) {
      id
      value
    }
  }
}

We recently added subitem support for update_column_value and create_pulse activity log queries. Each event has both the parent_board_id and parent_item_id properties. This change will not be applied retroactively, but all events moving forward will contain this information.