Vestaboard is smart messaging display you control with your phone or PC.
Trigger your workflow on one or more days each month at a specific time (with timezone support).
Emit new event when a new message is displayed on a board. See the docs
Trigger your workflow on one or more days each week at a specific time (with timezone support).
Get the list of subscriptions available to the viewer. See the docs
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}`,
},
})
},
})
The Schedule app in Pipedream is a powerful tool that allows you to trigger workflows at regular intervals, ranging from every minute to once a year. This enables the automation of repetitive tasks and the scheduling of actions to occur without manual intervention. By leveraging this API, you can execute code, run integrations, and process data on a reliable schedule, all within Pipedream's serverless environment.