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}`,
},
})
},
})
Creates an Activity object with the given values. See the documentation
Update a candidate profile with the specified ID. See the documentation
Merge uses API keys for authentication. When you connect your Merge account, Pipedream securely stores the keys so you can easily authenticate to Merge APIs in both code and no-code steps.