Aspose.Cells Cloud SDK for Perl – Convert, Merge, Split, Protect & More

Last updated: July 30 2026

The SDK is open-source and licensed under the MIT License. You can access the Perl library source code for Aspose.Cells Cloud here.

How to use Perl library of Aspose.Cells Cloud

Aspose.Cells Cloud SDK for Perl is a powerful library that allows developers to manipulate and process Microsoft Excel files using the Perl programming language. With this SDK, you can create, edit, and convert Excel documents in the cloud, without installing additional software or dependencies on your local machine.

In this article, we’ll explore how to use Aspose.Cells Cloud SDK for Perl to perform some common tasks, such as creating a new Excel workbook, inserting data into cells, and saving the modified workbook to the cloud.

Getting Started

Before you can start using the Aspose.Cells Cloud SDK for Perl, you need to set up your development environment and install the necessary dependencies. Refer to the Aspose.Cells Cloud Quickstart guide on the Aspose website to obtain your client ID and client secret.

How to install the Perl package for Aspose.Cells Cloud

Prerequisites

  • Perl 5.10 or later
  • CPAN (Comprehensive Perl Archive Network) installed
  • Valid Aspose.Cells Cloud client ID and client secret

You can install Aspose.Cells Cloud SDK for Perl by the command below:

perl -MCPAN -e shell
install AsposeCellsCloud::CellsApi

How to use Perl package to convert Xlsx to other formats

  • Import Aspose.Cells Cloud Library
    Begin by importing the necessary package from the Aspose.Cells Cloud Perl SDK into your project.

  • Configure API Client with Credentials
    Authenticate your API client with your unique client ID and client secret.

  • Prepare Conversion Parameters
    Define parameters for the conversion task, including the source file name, desired output format, and the storage folder path.

  • Execute Workbook Conversion
    Invoke the conversion process using the PostConvertWorkbook method and handle the response.

Below is a concise reference for the PostConvertWorkbook operation:

HTTP Method Endpoint Required Parameters Sample Request (Perl) Sample Response (JSON) Possible Status Codes
POST /cells/convert file (source workbook), outputFormat, storage perl\nmy $result = $api_instance->post_convert_workbook({ file => 'Book1.xlsx', outputFormat => 'pdf', storage => 'MyStorage' });\n { "File": "Book1.pdf", "Url": "https://.../Book1.pdf" } 200 OK, 400 Bad Request, 401 Unauthorized, 500 Server Error