Skip to content

Latest commit

 

History

History
51 lines (37 loc) · 3.19 KB

File metadata and controls

51 lines (37 loc) · 3.19 KB

Spreadsheet Cloud API: mergeRemoteSpreadsheet

Merge a spreadsheet file into other spreadsheet in cloud storage, and output a specified format 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/{name}/merge/spreadsheet

Function Description

This method merges multiple spreadsheet files stored in cloud storage into a single output file in the specified format (e.g., XLSX, CSV, PDF). The operation is performed remotely, without requiring the files to be downloaded to the local machine. Valid cloud storage credentials and accessible file paths or identifiers are required for all input files. The merging process is executed entirely within the cloud environment, reducing data transfer and improving performance. If any of the source files cannot be accessed, or if an error occurs during the merge or conversion process, an appropriate exception will be thrown. Supported output formats depend on the capabilities of the underlying cloud processing service.## 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: Merges multiple spreadsheet files stored in cloud storage into a single output file in the specified format (e.g., XLSX, CSV, PDF).- Remote Processing: Performs the merging operation entirely within the cloud environment, eliminating the need to download files to the local machine.- Efficient Data Handling: Reduces data transfer and enhances performance by processing files remotely.

The request parameters of mergeRemoteSpreadsheet API are:

Parameter Name Type Path/Query String/HTTPBody Description
name String Path The name of the workbook file to be split.
mergedSpreadsheet String Query
folder String Query The folder path where the workbook is stored.
outFormat String Query The out file format.
mergeInOneSheet Boolean Query Whether to combine all data into a single worksheet.
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 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]