DownloadAsset
Downloads a file uploaded to Monday.com by specifying the corresponding asset ID.
Input
Name | Type | Required | Description |
AssetId | String | True | The unique identifier for the asset you wish to download, used to locate the asset in the system or database. |
LocalPath | String | False | The absolute file path where the asset will be saved on the local system. This must be a fully qualified path, including the filename and extension. |
Result Set Columns
Name | Type | Description |
Success | Boolean | A boolean value indicating the success of the operation. A true value indicates the asset download completed successfully, while false indicates an error occurred. |
Details | String | A detailed message offering more information about the operation's execution. This can provide context for success, partial success, or failure, useful for troubleshooting. |
FileData | String | The file data in base64 encoding, returned when both the LocalPath and FileStream inputs are not provided. This allows the file to be transmitted in a text-based format suitable for embedding or storage. |