DownloadAsset
Downloads a file that was uploaded to Monday.com by specifying the asset ID.
Input
| Name | Type | Required | Accepts Output Streams | Description |
| AssetId | String | True | False | The unique identifier of the asset to be downloaded, used to locate the asset in the system and trigger the download process. |
| LocalPath | String | False | False | The full file path, including the directory and filename, where the downloaded asset will be saved on the local system. |
| FileStream | String | False | True | A writable output stream that will receive the file data, used as an alternative when LocalPath is not provided. The data is streamed directly to this location. |
Result Set Columns
| Name | Type | Description |
| Success | Boolean | A boolean value indicating the result of the download operation: true signifies that the operation completed successfully, while false indicates failure. |
| Details | String | Additional context or error messages regarding the outcome of the download process, often helpful for troubleshooting. |
| FileData | String | If neither LocalPath nor FileStream are provided, the file's binary data is returned as a base64-encoded string for use in other processes. |