AddFileToColumn
Attaches a file to a specific column value within a board, enhancing item management.
Input
| Name | Type | Required | Accepts Input Streams | Description |
| ItemId | String | True | False | The unique identifier for the item to which the file is being added. This is used to associate the file with a specific item in the system. |
| ColumnId | String | True | False | The unique identifier for the column in which the file will be added. This determines the location within the item's structure where the file will be placed. |
| FileName | String | False | False | The name of the file being uploaded. This parameter is required when the 'Content' field is provided and allows the system to associate a name with the uploaded file. |
| LocalPath | String | False | False | The local file path to the file being uploaded. If specified, this provides the path to the file on the user's machine that will be uploaded to the system. |
| Content | String | False | True | The content of the file as an InputStream. This is used when the file is being uploaded directly from memory, bypassing the need for a local path. |
Result Set Columns
| Name | Type | Description |
| Success | Boolean | A boolean value indicating the outcome of the operation. A true value means the file upload was successful, while false indicates an error occurred. |
| Details | String | Additional information about the result of the operation. This can include error messages, partial success details, or other relevant context. |
| AssetId | String | The unique identifier assigned to the file once it is uploaded. This ID is used to reference the uploaded file in subsequent operations. |