ChangeColumnMetadata
Updates the metadata or properties of a specific column in a board, such as its type or settings.
Input
Name | Type | Required | Description |
BoardId | String | True | The unique identifier of the board being modified or accessed. This value is used to target the specific board for the operation. |
Id | String | True | The unique identifier for the column being targeted within the board, necessary to reference the column for updates or changes. |
ColumnProperty | String | True | The specific property of the column to be modified, such as 'title' or 'description', indicating which aspect of the column is being updated.
The allowed values are title, description. |
Value | String | False | The new value to be assigned to the column property (for example, the new title or description) as part of the update operation. |
Result Set Columns
Name | Type | Description |
Success | Boolean | A boolean flag indicating whether the operation was successful. A value of true means the operation completed without errors, while false indicates failure. |
Details | String | A message containing additional details or context about the operation's execution, such as error messages or success confirmations. |
Id | String | The unique identifier of the column that was updated, which serves as confirmation of the operation and can be used for further reference. |