Import
Contents
[
Hide
]
Importing data into an Excel file is a complex process. Many factors contribute to the complexity and therefore, should be taken into account during the export process. The ability to imports kinds of formats and types of data into the file with a precise professional quality is a top feature of Aspose.Cells Cloud.
RSET APIs
The following APIs to import data into an Excel file or multiple Excel files is provided:
API | Description |
---|---|
POST /cells/impport | Import data into Excel files without using storage. |
POST /cells/{name}/impportdata | Import data into the Excel file with using storage. |
Request Parameters
Without using storage
Parameter Name | Type | Path/Query String/HTTPBody | Description |
---|---|---|---|
file | file | formData | File to upload |
ImportOption | ImportOptions | HTTPBody | IntArray/DoubleArray/StringArray/TwoDimensionIntArray/TwoDimensionDoubleArray/TwoDimensionStringArray/BatchData/CSVData/Picture |
With using storage
Parameter Name | Type | Path/Query String/HTTPBody | Description |
---|---|---|---|
name | string | path | |
folder | string | query | |
storageName | string | query | storage name. |
importData | body |
Import data option parameter
The important parameters are described in the following table:
How to call RSET APIs
The following articles explain each API how to call in detail and contain cURL and SDK Examples of each API:
- How to import data into Excel files without using storage.
- How to import data into Excel files with using storage.
- How to import Batch Data into Excel Worksheet
- How to import CSV Data into Excel Worksheet
- How to import picture into Excel Worksheet
- How to import Integer Array into Excel Worksheet
- How to import Double Array into Excel Worksheet
- How to import String Array into Excel Worksheet
- How to import 2 Dimension Integer Array into Excel Worksheet
- How to import 2 Dimension Double Array into Excel Worksheet
- How to iImport 2 Dimension String Array into Excel Worksheet