with HigherGov and Recruit CRM?
Emit new event when a pursuit is added to the pipeline.
Triggers when a new candidate is created. See the documentation
Triggers when a task is updated. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
highergov: {
type: "app",
app: "highergov",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://www.highergov.com/api-external/people`,
params: {
api_key: `${this.highergov.$auth.api_key}`,
},
})
},
})
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`,
},
})
},
})