with Recruit CRM and Recruiterflow?
Triggers when a new candidate is created. See the documentation
Triggers when a task is updated. See the documentation
The Recruit CRM API provides a suite of functions to automate and streamline recruitment processes. It allows you to integrate your recruitment workflow with other services, create custom applications, or even build bots. With Pipedream, you can connect the Recruit CRM API to a vast array of other apps and services to automate actions like updating candidate records, syncing with HR systems, or triggering notifications based on recruitment activities.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
recruit_crm: {
type: "app",
app: "recruit_crm",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.recruitcrm.io/v1/users`,
headers: {
Authorization: `Bearer ${this.recruit_crm.$auth.api_token}`,
"Accept": `application/json`,
},
})
},
})
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`,
},
})
},
})