with ChargeOver and EasyFill.ai?
ChargeOver is an API that simplifies the billing and invoicing process for SaaS and subscription-based services. With ChargeOver, you can automate billing workflows, handle various payment methods, set up recurring billing schedules, and manage customer information seamlessly. By integrating ChargeOver with Pipedream, you unlock the ability to craft custom automation flows that link billing events to countless other applications, enhance data management, and streamline communication with customers. It's ideal for businesses looking to reduce manual overhead and ensure their billing operations are as efficient as possible.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
chargeover: {
type: "app",
app: "chargeover",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.chargeover.$auth.domain}.chargeover.com/api/v3/user`,
auth: {
username: `${this.chargeover.$auth.public_key}`,
password: `${this.chargeover.$auth.private_key}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
easyfill_ai: {
type: "app",
app: "easyfill_ai",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://admin.easyfill.ai/api/child_care_centers/active`,
headers: {
"api-key": `${this.easyfill_ai.$auth.api_key}`,
},
})
},
})