import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
documerge: {
type: "app",
app: "documerge",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.documerge.ai/api/documents`,
headers: {
Authorization: `Bearer ${this.documerge.$auth.api_token}`,
"Accept": `application/json`,
"Content-Type": `application/json`,
},
})
},
})
Merges multiple user-specified files into a single PDF or DOCX. See the documentation
Converts a specified file into a PDF. See the documentation
Extracts and returns data from fields in a given document. See the documentation
DocuMerge uses API keys for authentication. When you connect your DocuMerge account, Pipedream securely stores the keys so you can easily authenticate to DocuMerge APIs in both code and no-code steps.