with Recruiterflow and Schedule?
Associates a candidate with a job posting in Recruiterflow. See the documentation
Creates a new candidate in Recruiterflow. See the documentation
Creates a new job posting in Recruiterflow. See the documentation
Records a successful candidate placement in Recruiterflow. See the documentation
Moves a candidate to a different stage in the job pipeline. You can specify either stage ID or stage name. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
recruiterflow: {
type: "app",
app: "recruiterflow",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://recruiterflow.com/api/external/user/list`,
headers: {
"rf-api-key": `${this.recruiterflow.$auth.api_key}`,
},
params: {
include_count: `true`,
},
})
},
})
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.