I use the API version “2023-10” to create items on a board and and sub-items on sub-board.
- The item_id is automatically generated during item creation. I want to write that item_id into the first column named “Id”. Do I have to wait for the creation and then query for the item_id and write (the number as a string I guess), or is there a way to
a) self-generate an item_id and pass it as a variable to the creation process
b) somehow autofill the (unknown) item_id into the column “Id” during create function - Similar as 1b), I would like to pre-define a sub-board and sub-item id and pass it to the create item function, to not have to wait ~30 seconds for the creation process to finish auto-populating the subitems of the sub-board until I can query the sub-board ID.