with Xero Accounting and AcyMailing?
Emit new event when a user subscribes to a specified list.
Emit new event when a user unsubscribes from the specified mailing list.
Emit new notifications when you create a new or update existing contact
Emit new notifications when you create a new or update existing invoice
Adds line items to an existing sales invoice. See the docs here
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
Gets bank statements for the specified bank account.
Sends an email to a single AcyMailing user. The user must exist in the AcyMailing database. See the documentation
The Xero Accounting API offers a powerful gateway to access and manipulate financial data within Xero. Leveraging Pipedream's capabilities, developers can build custom workflows that streamline accounting processes, sync financial data with external systems, and trigger actions based on financial events. This API allows for the automation of tasks such as invoicing, bank reconciliation, bill payments, and reporting, which can lead to significant time savings and enhanced data accuracy.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
xero_accounting_api: {
type: "app",
app: "xero_accounting_api",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.xero.com/connections`,
headers: {
Authorization: `Bearer ${this.xero_accounting_api.$auth.oauth_access_token}`,
},
})
},
})
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}`,
},
})
},
})