Aero is workflow & practice management built specifically with the modern cloud-based accounting firm in mind.
Go to siteYou can use the Aero Workflow API to build from simpleETL processes to multi-step workflows that encompass a variety of microservices. The following are examples of what you can build using the Aero Workflow API:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
aero_workflow: {
type: "app",
app: "aero_workflow",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.aeroworkflow.com/api/${this.aero_workflow.$auth.account_number}/me`,
headers: {
"apikey": `${this.aero_workflow.$auth.api_key}`,
},
})
},
})
Emit new events when a new company is created. See the docs
Aero Workflow uses API keys for authentication. When you connect your Aero Workflow account, Pipedream securely stores the keys so you can easily authenticate to Aero Workflow APIs in both code and no-code steps.
To get your API Key and Account Number, navigate to Account Settings > Account Profile.