New argument: Create a column with a custom ID
April 20th, 2023
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:
- [1-20] characters in length (inclusive)
- Only lowercase letters (a-z) and underscores (_)
- Must be unique - no other column on the board can have the same ID
- Can't be null, blank, or an empty string
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!