Skip to content

Latest commit

 

History

History
49 lines (35 loc) · 2.87 KB

File metadata and controls

49 lines (35 loc) · 2.87 KB

Spreadsheet Cloud API: splitSpreadsheet

Split a local spreadsheet into the specified format, multi-file.

Quick Start

  • Base URL: http://api.aspose.cloud/v4.0
  • Authentication Method: JWT (OAuth2, application) Token URL: https://api.aspose.cloud/connect/token
  • Example

Interface Details

Endpoint

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

Function Description

This method splits a single local spreadsheet file 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 cloudly, requiring no cloud storage. Ensure that you have the necessary permissions to read the source file and write the resulting files. If the source file cannot be accessed or if an error occurs during the splitting process, an appropriate exception will be thrown. Supported formats for output depend on the available libraries and their capabilities. 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- Local File Splitting: Splits a single local spreadsheet file into multiple output files in the specified format (e.g., XLSX, CSV, PDF).- Cloud-Based Processing: Performs the splitting operation in the cloud, without requiring cloud storage.- Enhanced Performance: Processes the file in the cloud, reducing the need for local processing and improving performance.

The request parameters of splitSpreadsheet API are:

Parameter Name Type Path/Query String/HTTPBody Description
Spreadsheet File FormData Upload spreadsheet file.
from Integer Query Begin worksheet index.
to Integer Query End worksheet index.
outFormat String Query The out file format.
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 The spreadsheet region setting.
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]