with Schedule and Ashby?
Considers a candidate for a job (e.g., when sourcing a candidate for a job posting). See the documentation
Retrieves a list of applications within an organization. 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: {
ashby: {
type: "app",
app: "ashby",
}
},
async run({steps, $}) {
return await axios($, {
method: "post",
url: `https://api.ashbyhq.com/user.list`,
headers: {
"accept": `application/json; version=1`,
"content-type": `application/json`,
},
auth: {
username: `${this.ashby.$auth.api_key}`,
password: ``,
},
})
},
})