Aroflo provides a set of APIs that lets you build various applications that can be used to manage your business processes. Here are some examples of what you can build using the Aroflo API:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
aroflo: {
type: "app",
app: "aroflo",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.aroflo.com/`,
headers: {
"Accept": `text/json`,
"Authentication": `HMAC ${this.aroflo.$auth.hmac_key}`,
},
params: {
where: `and|archived|=|false`,
zone: `users`,
page: `1`,
},
})
},
})
Aroflo uses API keys for authentication. When you connect your Aroflo account, Pipedream securely stores the keys so you can easily authenticate to Aroflo APIs in both code and no-code steps.
AroFlo API uses HMAC-SHA512 Key Authentication. Your API Secret Key and Authorisation fields are accessible from Site Administration > Settings > General > AroFlo API (docs)