Edit in GitHubLog an issue

Quickstart for Adobe PDF Services API (Node.js)

To get started using Adobe PDF Services API, let's walk through a simple scenario - taking an input PDF document and exporting it to Microsoft Word. In this guide, we will walk you through the complete process for creating a program that will accomplish this task.

Prerequisites

To complete this guide, you will need:

  • Node.js - Node.js version 18.0 or higher is required.
  • An Adobe ID. If you do not have one, the credential setup will walk you through creating one.
  • A way to edit code. No specific editor is required for this guide.

Step One: Getting credentials

1) To begin, open your browser to https://acrobatservices.adobe.com/dc-integration-creation-app-cdn/main.html?api=pdf-services-api. If you are not already logged in to Adobe.com, you will need to sign in or create a new user. Using a personal email account is recommend and not a federated ID.

Sign in

2) After registering or logging in, you will then be asked to name your new credentials. Use the name, "New Project".

3) Change the "Choose language" setting to "Node.js".

4) Also note the checkbox by, "Create personalized code sample." This will include a large set of samples along with your credentials. These can be helpful for learning more later.

5) Click the checkbox saying you agree to the developer terms and then click "Create credentials."

Project setup

6) After your credentials are created, they are automatically downloaded:

alt

Step Two: Setting up the project

1) In your Downloads folder, find the ZIP file with your credentials: PDFServicesSDK-Node.jsSamples.zip. If you unzip that archive, you will find a folder of samples and the pdfservices-api-credentials.json file.

alt

2) Take the pdfservices-api-credentials.json and place it in a new directory. Remember that these credential files are important and should be stored safely.

3) At the command line, change to the directory you created, and initialize a new Node.js project with npm init -y

alt

4) Install the Adobe PDF Services Node.js SDK by typing npm install --save @adobe/pdfservices-node-sdk at the command line.

5) Install a package to help us work with ZIP files. Type npm install --save adm-zip.

At this point, we've installed the Node.js SDK for Adobe PDF Services API as a dependency for our project and have copied over our credentials files.

Our application will take a PDF, Bodea Brochure.pdf (downloadable from here) and convert it to a Microsoft Word document, Bodea Brochure.docx.

6) In your editor, open the directory where you previously copied the credentials. Create a new file, export.js.

Now you're ready to begin coding.

Step Three: Creating the application

1) We'll begin by including our required dependencies:

Copied to your clipboard
1const {
2 ServicePrincipalCredentials,
3 PDFServices,
4 MimeType,
5 ExportPDFParams,
6 ExportPDFTargetFormat,
7 ExportPDFJob,
8 ExportPDFResult
9} = require("@adobe/pdfservices-node-sdk");
10const fs = require("fs");

2) Set the environment variables PDF_SERVICES_CLIENT_ID and PDF_SERVICES_CLIENT_SECRET by running the following commands and replacing placeholders YOUR CLIENT ID and YOUR CLIENT SECRET with the credentials present in pdfservices-api-credentials.json file:

  • Windows:

    • set PDF_SERVICES_CLIENT_ID=<YOUR CLIENT ID>
    • set PDF_SERVICES_CLIENT_SECRET=<YOUR CLIENT SECRET>
  • MacOS/Linux:

    • export PDF_SERVICES_CLIENT_ID=<YOUR CLIENT ID>
    • export PDF_SERVICES_CLIENT_SECRET=<YOUR CLIENT SECRET>

3) Next, we can create our credentials and use them:

Copied to your clipboard
1// Initial setup, create credentials instance
2const credentials = new ServicePrincipalCredentials({
3 clientId: process.env.PDF_SERVICES_CLIENT_ID,
4 clientSecret: process.env.PDF_SERVICES_CLIENT_SECRET
5});
6
7// Creates a PDF Services instance
8const pdfServices = new PDFServices({credentials});

4) Now, let's upload the asset:

Copied to your clipboard
1const inputAsset = await pdfServices.upload({
2 readStream,
3 mimeType: MimeType.PDF
4});

5) Now, let's create the parameters and the job:

Copied to your clipboard
1// Create parameters for the job
2const params = new ExportPDFParams({
3 targetFormat: ExportPDFTargetFormat.DOCX
4});
5
6// Creates a new job instance
7const job = new ExportPDFJob({inputAsset, params});

This set of code defines what we're doing (an Export operation), and sets parameter for the Export PDF job. In this example, the only parameter is the export format ,ie, DOCX.

6) The next code block submits the job and gets the job result:

Copied to your clipboard
1// Submit the job and get the job result
2const pollingURL = await pdfServices.submit({job});
3const pdfServicesResponse = await pdfServices.getJobResult({
4 pollingURL,
5 resultType: ExportPDFResult
6});
7
8// Get content from the resulting asset(s)
9const resultAsset = pdfServicesResponse.result.asset;
10const streamAsset = await pdfServices.getContent({asset: resultAsset});

7) The next code block saves the result at the specified location:

Copied to your clipboard
1// Creates an output stream and copy stream asset's content to it
2const outputStream = fs.createWriteStream("./Bodea Brochure.docx");
3streamAsset.readStream.pipe(outputStream);

This code runs the Export process and then stores the result Word document to the file system.

Example running at the command line

Here's the complete application (export.js):

Copied to your clipboard
1const {
2 ServicePrincipalCredentials,
3 PDFServices,
4 MimeType,
5 ExportPDFParams,
6 ExportPDFTargetFormat,
7 ExportPDFJob,
8 ExportPDFResult
9} = require("@adobe/pdfservices-node-sdk");
10const fs = require("fs");
11
12(async () => {
13 let readStream;
14 try {
15 // Initial setup, create credentials instance
16 const credentials = new ServicePrincipalCredentials({
17 clientId: process.env.PDF_SERVICES_CLIENT_ID,
18 clientSecret: process.env.PDF_SERVICES_CLIENT_SECRET
19 });
20
21 // Creates a PDF Services instance
22 const pdfServices = new PDFServices({credentials});
23
24 // Creates an asset(s) from source file(s) and upload
25 readStream = fs.createReadStream("./Bodea Brochure.pdf");
26 const inputAsset = await pdfServices.upload({
27 readStream,
28 mimeType: MimeType.PDF
29 });
30
31 // Create parameters for the job
32 const params = new ExportPDFParams({
33 targetFormat: ExportPDFTargetFormat.DOCX
34 });
35
36 // Creates a new job instance
37 const job = new ExportPDFJob({inputAsset, params});
38
39 // Submit the job and get the job result
40 const pollingURL = await pdfServices.submit({job});
41 const pdfServicesResponse = await pdfServices.getJobResult({
42 pollingURL,
43 resultType: ExportPDFResult
44 });
45
46 // Get content from the resulting asset(s)
47 const resultAsset = pdfServicesResponse.result.asset;
48 const streamAsset = await pdfServices.getContent({asset: resultAsset});
49
50 // Creates an output stream and copy stream asset's content to it
51 const outputFilePath = "./Bodea Brochure.docx";
52 console.log(`Saving asset at ${outputFilePath}`);
53 const outputStream = fs.createWriteStream(outputFilePath);
54 streamAsset.readStream.pipe(outputStream);
55 } catch (err) {
56 console.log("Exception encountered while executing operation", err);
57 } finally {
58 readStream?.destroy();
59 }
60})();

Next Steps

Now that you've successfully performed your first operation, review the documentation for many other examples and reach out on our forums with any questions. Also remember the samples you downloaded while creating your credentials also have many demos.

  • Privacy
  • Terms of Use
  • Do not sell or share my personal information
  • AdChoices
Copyright © 2024 Adobe. All rights reserved.