Speed up your recruitment processes.
Emit new event when a candidate is added in Taleez. See the documentation
Emit new event when a job listing is created in Taleez. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
taleez: {
type: "app",
app: "taleez",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.taleez.com/0/units`,
headers: {
"x-taleez-api-secret": `${this.taleez.$auth.secret_key}`,
"accept": `application/json;charset=UTF-8`,
},
params: {
page: `0`,
pageSize: `100`,
},
})
},
})
export default defineComponent({
async run({ steps, $ }) {
const text = ' Hello world! ';
return text.trim()
},
})