Docupilot

Document automation software

Integrate the Docupilot API with the Formatting API

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

Create Document with the Docupilot API

Create a document See docs here

 
Try it
[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

Overview of Docupilot

Docupilot offers powerful document automation capabilities, allowing you to create dynamic documents based on templates and data inputs. With the Docupilot API, you can integrate this functionality directly into Pipedream workflows, triggering document generation from a myriad of events and data sources. Think of automating contract creation when a new deal is won in your CRM, or sending personalized letters en masse with the click of a button. The API empowers you to craft, distribute, and manage documents efficiently and programmatically.

Connect Docupilot

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: {
    docupilot: {
      type: "app",
      app: "docupilot",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.docupilot.app/api/v1/templates`,
      headers: {
        "apikey": `${this.docupilot.$auth.api_key}`,
      },
    })
  },
})

Connect Formatting

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