Please take note of the following updates to the boards object:

  • The new add_teams_to_board mutation allows you to add teams to a board.
  • We have deprecated the add_subscribers_to_board mutation. Please use the add_users_to_workspace or add_users_to_board mutations instead.

We recently added the country_code field to the account object. It will return the two-letter country code where the first account admin is located. Check out our documentation to learn more!

We added a new field and argument to the users object to expand its functionality:

  1. The last_activity field returns the last date and time the user was active.
  2. The name argument allows you to conduct a fuzzy search of users by name.

Check out all of the details about these updates in our documentation!

Due to popular demand, we recently released a new mutation that allows you to update a group! You can view this mutation's details, including the code samples, arguments, and accepted attribute values, in our documentation. Happy updating!

mutation {
  update_group (board_id: 12345678, group_id: "today", group_attribute: color, new_value: "red") { 
    id
  } 
}

We recently made bug fixes that impact the items_by_column_values object:

  • The list returned using the created_at field will appear in reverse chronological order, with the most recent dates first.
  • Using pagination, you can return 1,000 items per page and 10,000 items overall. Any queries above these limits will fail. For example, a query with a limit of 1,000 that tries to return 11 pages of results will fail (1,000 * 11 = 11,000).

You can now update the people column with an email address by sending a string with the column's new value. Check out the code sample below!

mutation {
  change_simple_column_value(item_id: 123456789, board_id: 987654321, column_id: "person", value: "[email protected]") {
    id
  }
}

We've added four new fields to the workspaces object:

  • settings returns the workspaces settings
  • owners_subscribers returns the workspaces owner's
  • team_subscribers returns the teams subscribed to the workspace
  • users_subscribers returns the users subscribed to the workspace

Check out our workspaces doc to find out more!

We recently added the workspace_ids argument to the boards object that filters boards within the specified workspace(s). Read more about the workspace_ids argument in our boards doc!

Last week, we started validating inputs on the phone column. Many of our devs faced issues, so we have temporarily shut off the phone column validation to give extra time to adjust to the change.

We will turn the validation back on beginning December 1st, 2022. The API will then validate whether or not the phone number is valid, includes a 2-letter country code, and matches the specified country code's number criteria.

You can refer to our phone column doc to see up-to-date examples! Please follow this structure to avoid losing data and errors starting December 1st.