with TurboHire and NeetoForm?
TurboHire is a talent acquisition platform that streamlines the hiring process using automation and AI. With its API, you can enrich candidate profiles, automate communication, and trigger actions based on recruitment stages. On Pipedream, you can leverage TurboHire’s API to create powerful automations by connecting it to a multitude of services, thus enhancing the hiring workflow, maintaining candidate databases, and ensuring timely interactions.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
turbohire: {
type: "app",
app: "turbohire",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.turbohire.co/api/jobs/:job-id`,
headers: {
"X-Api-Key": `${this.turbohire.$auth.api_key}`,
"Content-Type": `application/json`,
},
params: {
"job-id": `{{Job-ID}}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
neetoform: {
type: "app",
app: "neetoform",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.neetoform.$auth.subdomain}.neetoform.com/api/external/v1/forms`,
headers: {
"x-api-key": `${this.neetoform.$auth.api_key}`,
},
})
},
})