Vestaboard

Vestaboard is smart messaging display you control with your phone or PC.

Integrate the Vestaboard API with the Formatting API

Setup the Vestaboard API trigger to run a workflow which integrates with the Formatting API. Pipedream's integration platform allows you to integrate Vestaboard and Formatting remarkably fast. Free for developers.

[Data] Convert JSON to String with Formatting API on New Current Message from Vestaboard API
Vestaboard + Formatting
 
Try it
[Data] Parse JSON with Formatting API on New Current Message from Vestaboard API
Vestaboard + Formatting
 
Try it
[Date/Time] Add/Subtract Time with Formatting API on New Current Message from Vestaboard API
Vestaboard + Formatting
 
Try it
[Date/Time] Compare Dates with Formatting API on New Current Message from Vestaboard API
Vestaboard + Formatting
 
Try it
[Date/Time] Format with Formatting API on New Current Message from Vestaboard API
Vestaboard + Formatting
 
Try it
New Current Message from the Vestaboard API

Emit new event when a new message is displayed on a board. See the docs

 
Try it
Create Message with the Vestaboard API

Creates a new message for a subscription. See the docs

 
Try it
[Data] Convert JSON to String with the Formatting API

Convert an object to a JSON format string

 
Try it
Get Current Message with the Vestaboard API

Retrieves the current message. See the docs

 
Try it
[Data] Parse JSON with the Formatting API

Parse a JSON string

 
Try it
Get Subscriptions with the Vestaboard API

Get the list of subscriptions available to the viewer. See the docs

 
Try it

Connect Vestaboard

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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}`,
      },
    })
  },
})

Connect Formatting

1
2
3
4
5
6
export default defineComponent({
  async run({ steps, $ }) {
    const text = ' Hello world! ';
    return text.trim()
  },
})