AddFileToUpdate
Uploads and associates a file with a specific update in Monday.
Input
| Name | Type | Required | Accepts Input Streams | Description |
| UpdateId | String | True | False | Specifies the unique identifier (ID) of the update to which the file should be added. |
| FileName | String | False | False | Specifies the name of the file being added. This is required if 'Content' is provided. |
| LocalPath | String | False | False | Specifies the local file path of the file to be uploaded. This is used when 'Content' is not provided. |
| Content | String | False | True | The content of the file as an InputStream. This is used when 'LocalPath' is not specified for uploading the file. |
Result Set Columns
| Name | Type | Description |
| Success | Boolean | Indicates whether the file was successfully added to the update. |
| Details | String | Provides additional details about the execution of the operation, such as errors or warnings. |
| AssetId | String | Returns the unique identifier (ID) of the uploaded file for reference. |