with Breezy HR and Bika.ai?
Breezy HR's API unlocks the power to streamline recruitment processes by automating routine tasks and integrating with a multitude of other apps. With this API on Pipedream, you can craft custom workflows to manage candidates, coordinate interview schedules, trigger communications, and track the hiring pipeline effortlessly. By harnessing data from Breezy HR, you can enhance efficiency, reduce manual errors, and keep the entire hiring team on the same page.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
breezy_hr: {
type: "app",
app: "breezy_hr",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.breezy.hr/v3/user`,
headers: {
"Content-Type": `application/json`,
"Authorization": `${this.breezy_hr.$auth.oauth_access_token}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
bika_ai: {
type: "app",
app: "bika_ai",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://bika.ai/api/openapi/bika/v1/system/meta`,
headers: {
Authorization: `Bearer ${this.bika_ai.$auth.api_token}`,
"content-type": `application/json`,
},
})
},
})