with AcyMailing and DocuMerge?
Emit new event when a user subscribes to a specified list.
Emit new event when a merged document is created in documerge.
Emit new event when a user unsubscribes from the specified mailing list.
Emit new event when a merged route is created in documerge.
Creates a new user or updates an existing user in AcyMailing. If the user exists, will update the user's data with provided information. See the documentation
Merges multiple user-specified files into a single PDF or DOCX. See the documentation
Sends an email to a single AcyMailing user. The user must exist in the AcyMailing database. 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
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
acymailing: {
type: "app",
app: "acymailing",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.acymailing.$auth.url}/index.php?page=acymailing_front&option=com_acym&ctrl=api&task=getUsers&limit=1&offset=0`,
headers: {
"Api-Key": `${this.acymailing.$auth.api_key}`,
},
})
},
})
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`,
},
})
},
})