with Breathe and Helper Functions?
Emit new event when an existing employee is updated in Breathe. See the documentation
Emit new event when a new employee is created in Breathe. See the documentation
Emit new event when a new employee leave request is created in Breathe. See the documentation
Approve or reject an employee leave request in Breathe. See the documentation
Accepts a base64-encoded string, returns a decoded UTF-8 string
Get the difference, intersection, union, or symetric difference of two arrays/sets.
Creates a new leave request for an employee in Breathe. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
breathe: {
type: "app",
app: "breathe",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.breathe.$auth.api_url}/v1/account`,
headers: {
"x-api-key": `${this.breathe.$auth.api_key}`,
},
})
},
})
The Helper Functions app on Pipedream is a set of pre-built functions that streamline common tasks in your workflows. It acts like a Swiss Army knife for developers, providing essential tools such as format conversion, date manipulation, and text processing. By leveraging these functions, you can reduce the boilerplate code needed for routine operations, speeding up the development of intricate automations. The Helper Functions API can be a game changer when it comes to tasks like parsing dates in user-friendly formats, encoding and decoding data, or generating UUIDs, making them more efficient and less error-prone.