Export List Object You can export formats: XLS , XLSX , XLSB , CSV , TSV , XLSM , ODS , TXT , PDF , OTS , XPS , DIF , PNG , JPEG , BMP , SVG , TIFF , EMF , NUMBERS , FODS ..
API
Type
Description
Swagger Link
/cells/export
POST
Export Excel from request content to some format
PostExport
The OpenAPI Specification defines a publicly accessible programming interface and lets you carry out REST interactions directly from a web browser.
You can use cURL command-line tool to access Aspose.Cells web services easily. The following example shows how to make calls to Cloud API with cURL.
Copy
curl -X POST "https://api.aspose.cloud/v3.0/cells/export?objectType=listobject&format=tiff" -H "accept: multipart/form-data" -H "Content-Type: multipart/form-data" -H "x-aspose-client: Containerize.Swagger" -d { "File" :{}}
Copy {
"Files" : [{
"Filename" : "Book1_xlsx_Sheet1_ListObjects_0.tif" ,
"FileSize" : 390,
"FileContent" : "-----Base64String--------"
} , {
"Filename" : "Book1_xlsx_Sheet2_ListObjects_0.tif" ,
"FileSize" : 10040,
"FileContent" : "-----Base64String--------"
} , {
"Filename" : "myDocument_xlsx_Sheet1_ListObjects_0.tif" ,
"FileSize" : 382,
"FileContent" : "-----Base64String--------"
}]
}
Using an SDK is the best way to speed up the development. An SDK takes care of low-level details and lets you focus on your project tasks. Please check out the GitHub repository for a complete list of Aspose.Cells Cloud SDKs.
The following code examples demonstrate how to make calls to Aspose.Cells web services using various SDKs:
C#
Java
PHP
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php
require_once('vendor\autoload.php');
use \Aspose\Cells\Cloud\Api\CellsApi;
use \Aspose\Cells\Cloud\Request\PostExportRequest;
$CellsCloudClientId = "...." ; # get from https://dashboard.aspose.cloud/#/applications
$CellsCloudClientSecret = "...."; # get from https://dashboard.aspose.cloud/#/applications
$cellsApi = new CellsApi($CellsCloudClientId , $CellsCloudClientSecret );
$assemblyTestXlsx = "assemblytest.xlsx";
$book1Xlsx = "Book1.xlsx";
$format = "csv";
$objectType = "listobject";
$mapFiles = array ();
$mapFiles[$assemblyTestXlsx] = "TestData/".$assemblyTestXlsx;
$mapFiles[$book1Xlsx] ='TestData/'.$book1Xlsx;
$request = new PostExportRequest();
$request->setFile( $mapFiles);
$request->setObjectType( $objectType);
$request->setFormat( $format);
$cellsApi->postExport($request);
Ruby
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'openssl'
require 'bundler'
require 'aspose_cells_cloud'
CellsCloudClientId = "...." # get from https://dashboard.aspose.cloud/#/applications
CellsCloudClientSecret = "...." # get from https://dashboard.aspose.cloud/#/applications
@instance = AsposeCellsCloud::CellsApi.new(CellsCloudClientId, CellsCloudClientSecret)
assembly_test_xlsx = 'assemblytest.xlsx'
book1_xlsx = 'Book1.xlsx'
format = "csv"
object_type = "listobject"
mapFiles = { }
mapFiles[assembly_test_xlsx]= ::File.open(File.expand_path("TestData/"+assembly_test_xlsx),"r")
mapFiles[book1_xlsx]= ::File.open(File.expand_path("TestData/"+book1_xlsx),"r")
request = AsposeCellsCloud::PostExportRequest.new(:File=>mapFiles,:objectType=>object_type,:format=>format);
@instance.post_export(request);
Node.js
Python
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os
import sys
from asposecellscloud.apis.cells_api import CellsApi
from asposecellscloud.models import *
from asposecellscloud.requests import *
CellsCloudClientId ='....' # get from https://dashboard.aspose.cloud/#/applications
CellsCloudClientSecret='....' # get from https://dashboard.aspose.cloud/#/applications
api = CellsApi(CellsCloudClientId,CellsCloudClientSecret)
request = PostExportRequest( {'assemblytest.xlsx':'assemblytest.xlsx'},object_type= 'listobject',format= 'png')
api.post_export(request)
Perl
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use lib 'lib';
use strict;
use warnings;
use File::Slurp;
use MIME::Base64;
use AsposeCellsCloud::CellsApi;
my $CellsCloudClientId = "...."; # get from https://dashboard.aspose.cloud/#/applications
my $CellsCloudClientSecret = "...."; # get from https://dashboard.aspose.cloud/#/applications
my $config = AsposeCellsCloud::Configuration->new( client_id => $CellsCloudClientId , client_secret => $CellsCloudClientSecret );
my $instance = AsposeCellsCloud::CellsApi->new(AsposeCellsCloud::ApiClient->new( $config));
my $assemblyTestXlsx = 'assemblytest.xlsx';
my $book1Xlsx = 'Book1.xlsx';
my $format = 'csv';
my $objectType = 'listobject';
my $mapFiles = {};
$mapFiles->{$assemblyTestXlsx}= "TestData/".$assemblyTestXlsx ;
$mapFiles->{$book1Xlsx}= "TestData/".$book1Xlsx ;
my $request = AsposeCellsCloud::Request::PostExportRequest->new();
$request->{file} = $mapFiles;
$request->{object_type} = $objectType;
$request->{format} = $format;
$instance->post_export(request=> $request);
Go