DownloadSpreadsheetResult
Overview
DownloadSpreadsheetResult represents the response returned when a spreadsheet is downloaded using a Google Sheets workflow activity.
It contains the file content along with metadata required to store, transmit, or process the downloaded spreadsheet within a workflow.
Properties
FileContentBase64
The binary content of the downloaded spreadsheet encoded as a Base64 string.
This value can be decoded to reconstruct the original file or passed to downstream activities such as file storage, email attachments, or document processing.
FileName
The name of the downloaded file, including its extension (for example, .xlsx).
ContentType
The MIME type of the downloaded file, such as:
application/vnd.openxmlformats-officedocument.spreadsheetml.sheet
This value helps downstream systems correctly identify and handle the file format.
Size
The size of the downloaded file in bytes.
Usage Notes
- The
FileContentBase64property must be Base64-decoded before writing the file to disk. - Use
FileNameandContentTypetogether when uploading, storing, or attaching the file. - Large spreadsheets may produce a sizable Base64 payload; consider memory usage when processing large files.