import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
mergemole: {
type: "app",
app: "mergemole",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://mergemole.com/api/test`,
headers: {
"x-api-token": `${this.mergemole.$auth.api_key}`,
"x-api-secret": `${this.mergemole.$auth.secret_key}`,
},
})
},
})
Generate a PDF document based on the specified template. See the documentation
Get all data variables of a specified template. See the documentation
Retrieve a list of all templates under your account. See the documentation
MergeMole uses API keys for authentication. When you connect your MergeMole account, Pipedream securely stores the keys so you can easily authenticate to MergeMole APIs in both code and no-code steps.