Breezy HR

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.

Integrate the Breezy HR API with the Formatting API

Setup the Breezy HR API trigger to run a workflow which integrates with the Formatting API. Pipedream's integration platform allows you to integrate Breezy HR and Formatting remarkably fast. Free for developers.

[Data] Convert JSON to String with the Formatting API

Convert an object to a JSON format string

 
Try it
[Data] Parse JSON with the Formatting API

Parse a JSON string

 
Try it
[Date/Time] Add/Subtract Time with the Formatting API

Add or subtract time from a given input

 
Try it
[Date/Time] Compare Dates with the Formatting API

Get the duration between two dates in days, hours, minutes, and seconds along with checking if they are the same.

 
Try it
[Date/Time] Format with the Formatting API

Format a date string to another date string

 
Try it

Overview of Breezy HR

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.

Connect Breezy HR

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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}`,
      },
    })
  },
})

Connect Formatting

1
2
3
4
5
6
export default defineComponent({
  async run({ steps, $ }) {
    const text = ' Hello world! ';
    return text.trim()
  },
})