Trigger workflows on an interval or cron schedule.
Emit new event whenever a new employee is created. See the documentation
Trigger your workflow on one or more days each month at a specific time (with timezone support).
Emit new event when a new job application is submitted. See the documentation
Hires a new employee and registers them in the system. See the documentation
Responds to an employee's time off request. This action requires the request ID and the response status as props. See the documentation
Allows updating an existing employee's data in the system. See the documentation
The Schedule app in Pipedream is a powerful tool that allows you to trigger workflows at regular intervals, ranging from every minute to once a year. This enables the automation of repetitive tasks and the scheduling of actions to occur without manual intervention. By leveraging this API, you can execute code, run integrations, and process data on a reliable schedule, all within Pipedream's serverless environment.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
talenthr: {
type: "app",
app: "talenthr",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://pubapi.talenthr.io/v1/timezones`,
auth: {
username: `${this.talenthr.$auth.api_key}`,
password: `c`,
},
})
},
})