with Homerun and Ironclad?
Emit new event when a candidate submits an application for a job posting. See the documentation
Emit new event when a fresh approval event is generated.
Emit new event when a new vacancy is created. See the documentation
Emit new event when a workflow document event is freshly established.
Emit new event when a new workflow event is created.
Adds a note to a candidate's profile in Homerun. See the documentation
Updates the metadata of an existing workflow. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
homerun: {
type: "app",
app: "homerun",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.homerun.co/v2/ping`,
headers: {
Authorization: `Bearer ${this.homerun.$auth.api_key}`,
"content-type": `application/json`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
ironclad: {
type: "app",
app: "ironclad",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://ironcladapp.com/scim/v2/Users`,
headers: {
Authorization: `Bearer ${this.ironclad.$auth.oauth_access_token}`,
},
params: {
startIndex: `1`,
count: `25`,
},
})
},
})