Edit in GitHubLog an issue

Quickstart for Adobe Document Generation API (Node.js)

To get started using Adobe Document Generation API, let's walk through a simple scenario - using a Word document as a template for dynamic receipt generation in PDF. 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=document-generation-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 file 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.

alt

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 Word document, receiptTemplate.docx (downloadable from here), and combine it with data in a JSON file, receipt.json (downloadable from here), to be sent to the Acrobat Services API and generate a receipt PDF.

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

Now you're ready to begin coding.

Step Three: Creating the application

1) Let's start by looking at the Word template. If you open the document in Microsoft Word, you'll notice multiple tokens throughout the document (called out by the use of {{ and }}).

Example of tokens

When the Document Generation API is used, these tokens are replaced with the JSON data sent to the API. These tokens support simple replacements, for example, {{Customer.Name}} will be replaced by a customer's name passed in JSON. You can also have dynamic tables. In the Word template, the table uses invoice items as a way to dynamically render whatever items were ordered. Conditions can also be used to hide or show content as you can see two conditions at the end of the document. Finally, basic math can be also be dynamically applied, as seen in the "Grand Total".

2) Next, let's look at our sample data:

Copied to your clipboard
1{
2 "author": "Gary Lee",
3 "Company": {
4 "Name": "Projected",
5 "Address": "19718 Mandrake Way",
6 "PhoneNumber": "+1-100000098"
7 },
8 "Invoice": {
9 "Date": "January 15, 2021",
10 "Number": 123,
11 "Items": [
12 {
13 "item": "Gloves",
14 "description": "Microwave gloves",
15 "UnitPrice": 5,
16 "Quantity": 2,
17 "Total": 10
18 },
19 {
20 "item": "Bowls",
21 "description": "Microwave bowls",
22 "UnitPrice": 10,
23 "Quantity": 2,
24 "Total": 20
25 }
26 ]
27 },
28 "Customer": {
29 "Name": "Collins Candy",
30 "Address": "315 Dunning Way",
31 "PhoneNumber": "+1-200000046",
32 "Email": "cc@abcdef.co.dw"
33 },
34 "Tax": 5,
35 "Shipping": 5,
36 "clause": {
37 "overseas": "The shipment might take 5-10 more than informed."
38 },
39 "paymentMethod": "Cash"
40}

Notice how the tokens in the Word document match up with values in our JSON. While our example will use a hard coded set of data in a file, production applications can get their data from anywhere. Now let's get into our code.

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

Copied to your clipboard
1const {
2 ServicePrincipalCredentials,
3 PDFServices,
4 MimeType,
5 DocumentMergeParams,
6 OutputFormat,
7 DocumentMergeJob,
8 DocumentMergeResult,
9 SDKError,
10 ServiceUsageError,
11 ServiceApiError
12} = require("@adobe/pdfservices-node-sdk");
13const fs = require("fs");

4) 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>

5) Next, we setup the SDK to use our credentials.

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});

6) Now, let's upload the asset and create JSON data for merge:

Copied to your clipboard
1// Creates an asset(s) from source file(s) and upload
2readStream = fs.createReadStream("./receiptTemplate.docx");
3const inputAsset = await pdfServices.upload({
4 readStream,
5 mimeType: MimeType.DOCX
6});
7
8// Setup input data for the document merge process
9const jsonDataForMerge = JSON.parse(fs.readFileSync('./receipt.json', 'utf-8'));

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

Copied to your clipboard
1// Create parameters for the job
2const params = new DocumentMergeParams({
3 jsonDataForMerge,
4 outputFormat: OutputFormat.PDF
5});
6
7// Creates a new job instance
8const job = new DocumentMergeJob({inputAsset, params});

This set of code defines what we're doing (a document merge operation, the SDK's way of describing Document Generation), points to our local JSON file and specifies the output is a PDF. It also points to the Word file used as a template.

8) 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: DocumentMergeResult
6});
7
8// Get content from the resulting asset(s)
9const resultAsset = pdfServicesResponse.result.asset;
10const streamAsset = await pdfServices.getContent({asset: resultAsset});

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

Copied to your clipboard
1// Creates a write stream and copy stream asset's content to it
2const outputFilePath = "./generatePDFOutput.pdf";
3console.log(`Saving asset at ${outputFilePath}`);
4
5const writeStream = fs.createWriteStream(outputFilePath);
6streamAsset.readStream.pipe(writeStream);

This code runs the Document Generation process and then stores the resulting PDF document to the file system.

Example running at the command line

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

Copied to your clipboard
1const {
2 ServicePrincipalCredentials,
3 PDFServices,
4 MimeType,
5 DocumentMergeParams,
6 OutputFormat,
7 DocumentMergeJob,
8 DocumentMergeResult,
9 SDKError,
10 ServiceUsageError,
11 ServiceApiError
12} = require("@adobe/pdfservices-node-sdk");
13const fs = require("fs");
14
15(async () => {
16 let readStream;
17 try {
18 // Initial setup, create credentials instance
19 const credentials = new ServicePrincipalCredentials({
20 clientId: process.env.PDF_SERVICES_CLIENT_ID,
21 clientSecret: process.env.PDF_SERVICES_CLIENT_SECRET
22 });
23
24 // Creates a PDF Services instance
25 const pdfServices = new PDFServices({credentials});
26
27 // Creates an asset(s) from source file(s) and upload
28 readStream = fs.createReadStream("./receiptTemplate.docx");
29 const inputAsset = await pdfServices.upload({
30 readStream,
31 mimeType: MimeType.DOCX
32 });
33
34 // Setup input data for the document merge process
35 const jsonDataForMerge = JSON.parse(fs.readFileSync('./receipt.json', 'utf-8'));
36
37 // Create parameters for the job
38 const params = new DocumentMergeParams({
39 jsonDataForMerge,
40 outputFormat: OutputFormat.PDF
41 });
42
43 // Creates a new job instance
44 const job = new DocumentMergeJob({inputAsset, params});
45
46 // Submit the job and get the job result
47 const pollingURL = await pdfServices.submit({job});
48 const pdfServicesResponse = await pdfServices.getJobResult({
49 pollingURL,
50 resultType: DocumentMergeResult
51 });
52
53 // Get content from the resulting asset(s)
54 const resultAsset = pdfServicesResponse.result.asset;
55 const streamAsset = await pdfServices.getContent({asset: resultAsset});
56
57 // Creates a write stream and copy stream asset's content to it
58 const outputFilePath = "./generatePDFOutput.pdf";
59 console.log(`Saving asset at ${outputFilePath}`);
60
61 const writeStream = fs.createWriteStream(outputFilePath);
62 streamAsset.readStream.pipe(writeStream);
63 } catch (err) {
64 if (err instanceof SDKError || err instanceof ServiceUsageError || err instanceof ServiceApiError) {
65 console.log("Exception encountered while executing operation", err);
66 } else {
67 console.log("Exception encountered while executing operation", err);
68 }
69 } finally {
70 readStream?.destroy();
71 }
72})();

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.