with Height and Instantly?
Emit new event whenever a task is created or updated in Height.
Emit new event when a new background job has completed. See the documentation
Emit new event when a new email is received. See the documentation
Adds a lead or leads to a campaign for tracking or further actions. See the documentation
Searches for tasks within your workspace using a text query. See the documentation
Updates a specified task within your workspace. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
height: {
type: "app",
app: "height",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.height.app/users/me`,
headers: {
"Authorization": `api-key ${this.height.$auth.api_key}`,
},
})
},
})
import { axios } from "@Pipedream/platform"
export default defineComponent({
props: {
instantly: {
type: "app",
app: "instantly",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.instantly.ai/api/v2/accounts`,
headers: {
Authorization: `Bearer ${this.instantly.$auth.api_key}`,
},
})
},
})