n8n Workflow Examples
Copy-paste recipes for common scenarios. Each example describes the nodes to add and the parameters to set on the PushToDisplay node.
Simple message update
Add a Manual Trigger, then a PushToDisplay node. The simplest possible send:
| Parameter | Value |
|---|---|
| Authentication | API Key |
| Board ID | <your-board-id> |
| Message | System operational |
The message appears on the board within seconds of the workflow running.
Styled message
Use a Code node with an expression, or set static values directly on the node:
| Parameter | Value |
|---|---|
| Message | Deploy completed |
| Text Size | Large |
| Font Weight | Bold |
| Text Color | #E8FFF6 |
| Text Background Color | #0A4A36 |
| Background Color | #0F172A |
Combine with an n8n expression for dynamic content — e.g. a message built from workflow data:
Deploy of {{ $json.repository }} completed
Multi-panel dashboard
Update different panels from separate steps or branches of your workflow:
Panel 1 — build status
| Parameter | Value |
|---|---|
| Target Panel | 1 |
| Message | Build: passing |
| Content Spacing | Compact |
Panel 2 — test results
| Parameter | Value |
|---|---|
| Target Panel | 2 |
| Message | Tests: 128 passed |
| Content Spacing | Compact |
Scheduled daily update
Use a Schedule Trigger (e.g. every day at 08:00) connected to the PushToDisplay node, with the message set as a static or expression value.
Webhook-triggered update
Use a Webhook node as the trigger, then map fields from the incoming request to the node:
| Node field | Expression |
|---|---|
| Message | {{ $json.message }} |
| Background Color | {{ $json.background }} |
For example, a GitHub webhook payload can drive a deploy-status board, or a form submission can push a notification to a lobby display.
Next
See the HTTP API for the underlying API, or GitHub Action if you need CI/CD integration instead.