PRODUCT_NAME_ALT

Merge JSON with ODP for Free in nodejs

Use a free app or Nodejs SDK to merge JSON and ODP, along with several popular formats from Microsoft® MS Excel.

Nodejs Code for Merging JSON Files into ODP: A Complete Guide

// Merge JSON to HTML
//Code will be available soon
%!(EXTRA string=JSON, string=HTML)
Merge HTML to ODP
// For complete examples and data files, please go to https://github.com/aspose-Slides-cloud/aspose-Slides-cloud-nodejs

const cloud = require("asposeslidescloud");

const slidesApi = new cloud.SlidesApi("my_client_id", "my_client_secret");

// Prepare request data for presentations to merge.
const request = new cloud.PresentationsMergeRequest();
request.presentationPaths = ["MyResources/example1.pptx", "MyResources/example2.pptx"];
request.presentationPasswords = ["password1"];

// Merge the presentations.
slidesApi.merge("MyPresentation.pptx", request, "my_password", "MyFolder").then(response => {
    // Output: https://api.aspose.cloud/v3.0/slides/MyPresentation.pptx?folder=MyFolder
    console.log(response.body.selfUri.href);
});
%!(EXTRA string=HTML, string=ODP)

How to Merge JSON with ODP in Cloud Apps

  1. Initialize WordsApi with Client Id, Client Secret, Base URL & API version
  2. Set requestDocument assign the local JSON file name
  3. Set requestDocumentListDocumentEntriesFileReference and assign local ODP file name
  4. Set requestDocumentListDocumentEntries and set file_reference, import_format_mode parameters
  5. Create DocumentEntryList instance and assing requestDocumentListDocumentEntries to document_entries parameter
  6. Call AppendDocumentOnlineRequest to merge JSON file with ODP document requestDocument and requestDocumentList
  7. Call WordsApi appendDocumentOnline with parameters

Get Started with Aspose.Total REST APIs

  1. Create an account at Dashboard to get free API quota & authorization details
  2. Get Aspose.Words and Aspose.Cells Cloud SDKs for Nodejs source code from Aspose.Words GitHub and Aspose.Cells GitHub repos to compile/use the SDK yourself or head to the Releases for alternative download options.
  3. Also have a look at Swagger-based API Reference for Aspose.Words and Aspose.Cells to know more about the REST API.

How to Merge MS Excel Spreadsheet(JSON) and ODP Files

Aspose.Cells Cloud provides efficient methods to merge multiple documents into a single file while preserving formatting.

Steps for Merging Documents:

  1. Create a MergeDocumentRequest Object to specify the source documents to be merged.
  2. Call the AppendDocument Method of the Aspose.Cells API class instance to merge one document into another.
  3. Use SaveOptions to define the output format (DOCX, PDF, etc.).
  4. Send API Request to combine documents into a single merged output.

How to Combine MS Excel and JSON with Other Formats Online

Boost your document management efficiency by merging JSON files with other formats using the robust Aspose.Cells API. Seamlessly integrate your merged documents with other Aspose.Total APIs such as Aspose.Words, Aspose.PDF, Aspose.Email, Aspose.Slides, Aspose.Diagram, Aspose.Tasks, Aspose.3D, Aspose.HTML. This all-in-one solution allows you to combine files into a single document across various formats.

For a full list of supported formats and merging features, visit the Aspose.Total Cloud page.

FAQ

  • What is ODP Format?
    Files with .odp extension represent presentation file format used by OpenOffice.org in the OASISOpen standard. A presentation file is a collection of slides where each slide can comprise of text, images, formatting, animations, and other media. These slides are presented to audience in the form of slideshows with custom presentation settings. ODP files can be opened by applications that conform to the OpenDocument format (such as OpenOffice or StarOffice).
  • What is JSON Format?
    JSON (JavaScript Object Notation) is an open standard file format for sharing data that uses human-readable text to store and transmit data. JSON files are stored with the .json extension. JSON requires less formatting and is a good alternative for XML. JSON is derived from JavaScript but is a language-independent data format. The generation and parsing of JSON is supported by many modern programming languages. application/json is the media type used for JSON.
  • Where can I see the release notes for Aspose.Total Cloud API?
    Complete release notes can be reviewed at Aspose.Total Cloud Documentation.
  • How can I get started with Aspose.Total REST APIs?
    Quickstart not only guides through the initialization of Aspose.Total Cloud API, it also helps in installing the required libraries.
  • Is it safe to merge JSON with ODP in the Cloud?
    Of course! Aspose Cloud uses Amazon EC2 cloud servers that guarantee the security and resilience of the service. Please read more about Aspose's Security Practices.
  • What file formats are supported by Aspose.Total Cloud API?
    Aspose.Total Cloud can merge file formats from any product family to any other product family to PDF, DOCX, XPS, image(TIFF, JPEG, PNG BMP), MD and more. Checkout the complete list of supported file formats.
  • I can not find the SDK for my favorite language. What should I do?
    Aspose.Total Cloud is also available as a Docker Container. Try using it with cURL in case your required SDK is not available yet.