with Mural and Instantly?
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
Emit new event each time a new sticky note is created in a specified mural
Create a new mural within a specified workspace. See the documentation
Adds a lead or leads to a campaign for tracking or further actions. See the documentation
Create a new sticky note within a given mural. See the documentation
Updates the interest status of a lead in a campaign. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
mural: {
type: "app",
app: "mural",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.mural.co/api/public/v1/users/me`,
headers: {
Authorization: `Bearer ${this.mural.$auth.oauth_access_token}`,
"accept": `application/json`,
},
})
},
})
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}`,
},
})
},
})