with Ashby Job Postings and EasyFill.ai?
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: {
easyfill_ai: {
type: "app",
app: "easyfill_ai",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://admin.easyfill.ai/api/child_care_centers/active`,
headers: {
"api-key": `${this.easyfill_ai.$auth.api_key}`,
},
})
},
})