Breezy is a simple, collaborative recruiting platform designed to help you create, publish and advertise your open jobs, manage and organize your candidates and streamline all of your internal team and external candidate communication.
Go to siteThe Breezy HR API allows developers to interact with Breezy HR data in order to build applications that can perform various Human Resources-related tasks. Some examples of what you can build using the Breezy HR API include:
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}`,
},
})
},
})
Breezy HR uses OAuth authentication. When you connect your Breezy HR account, Pipedream will open a popup window where you can sign into Breezy HR and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Breezy HR API.
Pipedream requests the following authorization scopes when you connect your account:
POST
https://api.breezy.hr/v3/signin
content-type: application/json
email={{custom_fields.email}}
&
password={{custom_fields.password}}