Spreadsheet Cloud API: splitRemoteSpreadsheet

Split a spreadsheet in cloud storage into the specified format, multi-file.

Quick Start

Interface Details

Endpoint

PUT http://api.aspose.cloud/v4.0/cells/{name}/split/spreadsheet

Function Description

This method splits a single spreadsheet file stored in cloud storage into multiple output files in the specified format (e.g., XLSX, CSV, PDF). Each split file may represent different sheets, sections, or segments of the original document based on user-defined criteria. The operation is performed remotely within the cloud environment, eliminating the need to download the files to the local machine. Ensure that you have valid cloud storage credentials and accessible file paths or identifiers for all input files. If the source file cannot be accessed, permissions are insufficient, or if an error occurs during the splitting process, an appropriate exception will be thrown. Supported formats for output depend on the capabilities of the underlying cloud processing service. Users should specify clear criteria for how the input file should be divided to ensure accurate results.## Error Handling- 400 Bad Request: Invalid url.- 401 Unauthorized: Authentication has failed, or no credentials were provided.- 404 Not Found: Source file not accessible.- 500 Server Error The spreadsheet has encountered an anomaly in obtaining data.## Key Features and Benefits- Cloud Storage Integration: Splits a single spreadsheet file stored in cloud storage into multiple output files in the specified format (e.g., XLSX, CSV, PDF).- Remote Processing: Performs the splitting operation entirely within the cloud environment, eliminating the need to download files to the local machine.- Enhanced Performance: Processes the file in the cloud, reducing the need for local processing and improving performance.

The request parameters of splitRemoteSpreadsheet API are:

| Parameter Name | Type | Path/Query String/HTTPBody | Description | | :- | :- | :- |:- | |name|String|Path|The name of the workbook file to be split.| |folder|String|Query|The folder path where the workbook is stored.| |from|Integer|Query|Begin worksheet index.| |to|Integer|Query|End worksheet index.| |outFormat|String|Query|The desired output format (e.g., "Xlsx", "Pdf", "Csv").| |storageName|String|Query|(Optional) The name of the storage if using custom cloud storage. Use default storage if omitted.| |outPath|String|Query|(Optional) The folder path where the workbook is stored. The default is null.| |outStorageName|String|Query|Output file Storage Name.| |fontsLocation|String|Query|Use Custom fonts.| |region|String|Query|Spreadsheet region/language setting (e.g., en-US, fr-FR). Influences number formatting, date parsing, and locale‑specific behavior.| |password|String|Query|The password for opening spreadsheet file.|

Response Description

{
File
}

OpenAPI Specification

The OpenAPI Specification defines a publicly accessible programming interface and lets you carry out REST interactions directly from a web browser.

[Back to API list]
[Back to README]