Hiveage helps freelancers and small businesses automate their online invoicing and billing.
Write custom Node.js code and use any of the 400k+ npm packages available. Refer to the Pipedream Node docs to learn more.
With the Hiveage API, you can build a variety of applications and integrations
to help manage your business finances. Here are some examples of what you can
build:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
hiveage: {
type: "app",
app: "hiveage",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.hiveage.$auth.subdomain}.hiveage.com/api/network`,
auth: {
username: `${this.hiveage.$auth.api_key}`,
password: ``,
},
})
},
})
// To use previous step data, pass the `steps` object to the run() function
export default defineComponent({
async run({ steps, $ }) {
// Return data to use it in future steps
return steps.trigger.event
},
})