Download
Welcome to the official documentation hub for our application, the central repository where you'll find everything you need to get started, master advanced workflows, and integrate the platform seamlessly into your own solutions. This page is designed with both new users and seasoned developers in mind, offering a clear, structured layout that guides you step-by-step from the very basics of installation and configuration to the most sophisticated use-cases involving data pipelines, automation, and real-time processing. At the top of the navigation pane, you'll discover quick-start guides that walk you through a hands-on tutorial, allowing you to spin up a sandbox environment, upload your first data set, and run the core processing engine within minutes. Below the quick-start, the comprehensive reference section dives deep into each module, presenting detailed explanations of concepts such as job scheduling, file transformation rules, and error handling strategies, all enriched with live code snippets, interactive diagrams, and downloadable example projects. To enhance discoverability, every function, class, and endpoint is indexed in an exhaustive API catalogue that includes usage syntax, required and optional parameters, return types, and version-specific notes, making it trivial to locate the exact piece of functionality you need. In addition, we have a robust “FAQ & Troubleshooting” area that aggregates the most common questions from our community, complete with step-by-step solutions, diagnostic tools, and links to community forums where you can share experiences and ask for help. Throughout the documentation, you'll notice consistent usage of visual cues—icons indicating beta features, deprecations, or security considerations—so you can quickly assess the stability and relevance of each element. Finally, the “Release Notes” archive provides a chronological log of every new feature, improvement, and bug fix, giving you full transparency into the evolution of the platform and helping you plan upgrades with confidence. Whether you're building a simple UI for end-users or orchestrating large-scale batch jobs across a distributed cluster, this documentation serves as your single source of truth, ensuring that you always have the most accurate, up-to-date information at your fingertips.
Main Features
The Download API is the gateway that empowers you to retrieve the fully processed files generated by every other endpoint in the system, delivering a fast, reliable, and secure method to access your transformed data whenever you need it. Built on top of a RESTful architecture, the API supports both synchronous and asynchronous download patterns, allowing you to request a file immediately after a processing job completes or schedule a bulk retrieval for large collections of outputs, with built-in pagination and filtering capabilities so you can limit results by status, date range, or custom tags.
Documents
Parameters
- folderName: The folder name
- fileName: The file name you need to download
Use The Endpoint
-
Send a request that includes the parameters and the access token Download API
curl -X 'GET' \ 'https://api.sheetize.cloud/download/TheFileName.zip?folderName=TheFolderName' \ -H 'accept: */*' \ -H 'Authorization: Bearer TheAccessToken' - You will receive the file and you can either use it or simply forward it to the next step of your workflow.