We just added the create_doc
mutation that allows you to create a new doc in a document column!
mutation {
create_doc (location: { board: {item_id: 1234567890, column_id: "monday_doc"}}) {
id
}
}
We just added the create_doc
mutation that allows you to create a new doc in a document column!
mutation {
create_doc (location: { board: {item_id: 1234567890, column_id: "monday_doc"}}) {
id
}
}
We now will use versioning to provide a stable API to our third-party developers while simultaneously allowing the API to evolve and improve!
We support three different versions of the API: stable, deprecated, and preview. Each quarter, we will release updated versions that contain new features, updates, bug fixes, or deprecations. To access a specific version, you can send the API-Version
header in your request (check out an example here!)
2023-04
2023-01
2023-07
Further, we’ve also added the version
and versions
APIs that you can query to retrieve information about the version you used in your request or all of the currently supported versions.
Check out our guide for more information about API versioning!
Did you know that you can also use the create_column
mutation to add a status or dropdown column with custom labels to a board?
This method requires you to send the label values as JSON strings using the defaults
argument, so ensure that your JSON is formatted properly to avoid errors. Check out our documentation to see a few examples!
You can now query and mutate the brand-new folders
object via the API! Querying the new object will return metadata about one or a collection of folders and their contents. You can also use one of the new mutations to create, update, or delete folders. Check out our folders
API reference for all of the details!
The brand-newmove_subitem
webhook allows you to listen for when a subitem moves from one parent item to another. Check out our documentation to see the complete list of available event types!
The new out_of_office
field for the users
object allows you to check a user's out-of-office status. The out_of_office
field also supports the following fields to give you additional information about the user's status:
active
disable_notifications
end_date
start_date
type
Check out our documentation to see more info about the users
object!
The position
argument has also been deprecated for the update_group
mutation. You can now use the group_attribute
and new_value
arguments to move the updated group before or after a specific group on the board. Check out our documentation to find all the details!
We recently deprecated the position
argument for the create_group
mutation. You can still specify the new group's location on the board using the recently released relative_to
and position_relative_method
arguments. You can find all of the details about these new arguments in our documentation!
mutation {
create_group (board_id: 1234567890, group_name: "new group", relative_to: "test group", position_relative_method: before_at) {
id
}
}
We recently added the id
argument to the create_column
mutation, so you can now create a column with a custom ID! This argument is optional, and you will still receive an auto-generated ID if you choose not to use it.
If you send the id
argument, ensure that your value meets the following requirements:
If your value doesn't meet these requirements, the mutation will fail, and the column will not be created. Check out our documentation for more information!
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!