Hiveage helps freelancers and small businesses automate their online invoicing and billing.
Go to siteWith 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: ``,
},
})
},
})
Hiveage uses API keys for authentication. When you connect your Hiveage account, Pipedream securely stores the keys so you can easily authenticate to Hiveage APIs in both code and no-code steps.
You can find your Hiveage API key from your Global Profile.