Fast, Reliable, Scalable Document Generation. A smart template-based approach to generating custom PDF and Word documents.
Go to siteThe Docmosis API lets you generate custom documents based on templates. You can populate these templates with dynamic content and convert them into various formats such as PDF, Word, and HTML. On Pipedream, leveraging the Docmosis API in your workflows allows automated document generation, making it ideal for reports, contracts, invoices, and more. You can trigger workflows with various events and use data from other apps to fill templates.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
docmosis: {
type: "app",
app: "docmosis",
}
},
async run({steps, $}) {
const data = {
"accessKey": `${this.docmosis.$auth.access_key}`,
}
return await axios($, {
method: "post",
url: `${this.docmosis.$auth.location_base_url}/environment/ready`,
data,
})
},
})
Automated Invoice Generation: When a new order is received in Shopify, you can trigger a Pipedream workflow to collect order data and send it to Docmosis to generate an invoice. The workflow could then email the invoice to the customer and update the order status in Shopify.
Dynamic Contract Creation: Upon a new lead in Salesforce, you can automatically create a custom contract using Docmosis. The workflow could fill a template with lead data, generate the contract, and upload the signed version back to Salesforce once completed.
Monthly Report Compilation: At the end of each month, gather data from Google Sheets, process the data in Pipedream, and pass the relevant information to Docmosis to generate a comprehensive report. You might then save this report to Google Drive and notify your team via Slack.
Generates a document by merging data with a Docmosis template. See the documentation
Docmosis uses API keys for authentication. When you connect your Docmosis account, Pipedream securely stores the keys so you can easily authenticate to Docmosis APIs in both code and no-code steps.