AddFileToColumn
Attaches a file to a specific column value in a board, enhancing item detail management.
Input
Name | Type | Required | Description |
ItemId | String | True | Specifies the unique identifier of the item to which the file will be attached. This should correspond to an existing item in the database. |
ColumnId | String | True | Specifies the unique identifier of the column where the file will be added. The column must exist and be associated with the specified item. |
FileName | String | False | Specifies the name of the file being uploaded. This is required when the file's content is provided via the Content input parameter. |
LocalPath | String | False | Specifies the local file path of the file to be uploaded. Use this when the file content is being uploaded from a local source. |
Result Set Columns
Name | Type | Description |
Success | Boolean | Indicates whether the file was successfully uploaded and attached to the specified column. |
Details | String | Provides additional information about the execution of the operation, such as warnings or errors encountered. |
AssetId | String | Returns the unique identifier (Asset ID) assigned to the uploaded file for future reference. |