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`,
},
})
},
})
Emit new event when a candidate submits an application for a job posting. See the documentation
Emit new event when a new vacancy is created. See the documentation
Adds a note to a candidate's profile in Homerun. See the documentation
Homerun uses API keys for authentication. When you connect your Homerun account, Pipedream securely stores the keys so you can easily authenticate to Homerun APIs in both code and no-code steps.