Docupilot offers a simple, yet powerful API that enables you to generate documents on the fly. With just a few lines of code, you can easily create documents such as PDFs, Word documents, Excel Spreadsheets, and more.
Here are just a few examples of what you can build using the Docupilot API:
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}`,
},
})
},
})
Docupilot uses API keys for authentication. When you connect your Docupilot account, Pipedream securely stores the keys so you can easily authenticate to Docupilot APIs in both code and no-code steps.
Get your API key in your Settings