with Ashby Job Postings and Merge?
Creates an Activity object with the given values. See the documentation
Update a candidate profile with the specified ID. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
ashby_job_postings_api: {
type: "app",
app: "ashby_job_postings_api",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.ashbyhq.com/posting-api/job-board/${this.ashby_job_postings_api.$auth.job_board_name}`,
params: {
includeCompensation: `true`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
merge: {
type: "app",
app: "merge",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.merge.dev/api/ats/v1/linked-accounts`,
headers: {
Authorization: `Bearer ${this.merge.$auth.api_key}`,
},
})
},
})