PDFMonkey

PDFMonkey is the solution to handle your PDF generation needs.

Integrate the PDFMonkey API with the Formatting API

Setup the PDFMonkey API trigger to run a workflow which integrates with the Formatting API. Pipedream's integration platform allows you to integrate PDFMonkey and Formatting remarkably fast. Free for developers.

[Data] Convert JSON to String with the Formatting API

Convert an object to a JSON format string

 
Try it
[Data] Parse JSON with the Formatting API

Parse a JSON string

 
Try it
[Date/Time] Add/Subtract Time with the Formatting API

Add or subtract time from a given input

 
Try it
[Date/Time] Compare Dates with the Formatting API

Get the duration between two dates in days, hours, minutes, and seconds along with checking if they are the same.

 
Try it
[Date/Time] Format with the Formatting API

Format a date string to another date string

 
Try it

Overview of PDFMonkey

The PDFMonkey API on Pipedream allows you to automate the creation of PDF documents from dynamic data sources. You can generate invoices, reports, tickets, or any customized document based on templates you define. With Pipedream’s serverless platform, you can trigger PDF generation from a multitude of events, such as form submissions, scheduled times, or changes in a database, and then perform actions like sending these PDFs via email, storing them in cloud storage, or updating records in a CRM.

Connect PDFMonkey

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    pdfmonkey: {
      type: "app",
      app: "pdfmonkey",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.pdfmonkey.io/api/v1/current_user`,
      headers: {
        Authorization: `Bearer ${this.pdfmonkey.$auth.api_key}`,
      },
    })
  },
})

Connect Formatting

1
2
3
4
5
6
export default defineComponent({
  async run({ steps, $ }) {
    const text = ' Hello world! ';
    return text.trim()
  },
})