with Salesloft and Vestaboard?
Emit new event when a new message is displayed on a board. See the docs
Get the list of subscriptions available to the viewer. See the docs
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
salesloft: {
type: "app",
app: "salesloft",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.salesloft.com/v2/me`,
headers: {
Authorization: `Bearer ${this.salesloft.$auth.api_key}`,
"accept": `application/json`,
},
})
},
})
The Vestaboard API allows you to control a networked, mechanical split-flap display, enabling you to automate the content it shows. By integrating with Pipedream, you can develop serverless workflows that respond to various triggers (like incoming webhooks, emails, or scheduled timers) and push updates to your Vestaboard. You can dynamically display information such as meeting reminders, real-time performance metrics, or custom messages based on events from other apps and services.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
vestaboard: {
type: "app",
app: "vestaboard",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://platform.vestaboard.com/viewer`,
headers: {
"X-Vestaboard-Api-Key": `${this.vestaboard.$auth.api_key}`,
"X-Vestaboard-Api-Secret": `${this.vestaboard.$auth.api_secret}`,
},
})
},
})