with Merge and Zendesk Sell?
Emit new event when a new contact is created in Zendesk Sell.
Emit new event when a new deal is created in Zendesk Sell.
Emit new event when a new lead is created in Zendesk Sell.
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: {
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}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
zendesk_sell: {
type: "app",
app: "zendesk_sell",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.getbase.com/v2/users/self`,
headers: {
Authorization: `Bearer ${this.zendesk_sell.$auth.oauth_access_token}`,
"accept": `application/json`,
},
})
},
})