CreateColumn
Creates a new column in a board, allowing for customized data fields.
Input
| Name | Type | Required | Description |
| BoardId | String | True | The unique identifier of the board where the operation will take place. This is used to specify which board is being modified or referenced. |
| Title | String | True | The title to be assigned to the new column, which helps define the column's purpose or function within the board. |
| Description | String | False | A detailed description for the new column, explaining its intended use or functionality within the context of the board. |
| ColumnType | String | True | Specifies the data type of the new column, such as text, number, or date, which determines the kind of data that can be stored in the column. |
| Defaults | String | False | The default value to be set for the new column, which will be applied to existing records if no value is provided during insertion or update. |
| Id | String | False | The user-defined unique identifier for the new column, used to distinguish it from other columns within the same board. |
| AfterColumnId | String | False | The unique identifier of the column after which the new column will be inserted, determining the order in which columns appear. |
Result Set Columns
| Name | Type | Description |
| Success | Boolean | A boolean flag indicating the success or failure of the operation. True means the operation was completed successfully, while false indicates an error occurred. |
| Details | String | Provides additional information about the execution of the operation, including any warnings or errors that occurred during the process. |
| Id | String | The unique identifier of the column that was created or modified as part of the operation, confirming its existence in the board schema. |