Is there any way to create a column only if it does not exist?
At the moment, there is a chance that a race condition could result in duplication.
Before adding data to a board, we need to be sure the board is correctly configure and create the correct columns…
The only way we can do that now if through two API calls (read, create) and that can result in concurrency issues.
Is there any solution to this? We need to avoid corrupting our data due to this…