One send API — Send Message (generic)
Send Message speaks a GENERIC webhook dialect too — one node, any provider. This demo posts to a public echo endpoint (needs internet); point url at Slack/Teams/PagerDuty webhooks in production.
What’s inside
3 nodes — every type links to its full reference page.
| Step | Node | Type |
|---|---|---|
| Marketing event | Inject | input.inject |
| Send (generic) | Send Message | output.send-message |
| Forwarded | Console | utility.console |
Import it
- Studio → Import — paste the JSON below (or the URL
/docs/templates/one-send-api-send-message-generic.json). - Or ask the AI Copilot with the JSON pasted after the phrase:
import this workflow json into a new workflow named "One send API — Send Message (generic)" - Any credentials the nodes need are
${credential.…}references — add them once in Admin → Credentials and the template picks them up. Nothing secret ships in a template.
The workflow document (flowdrome.workflow.v1, 3 node types)
{
"schemaVersion": "flowdrome.workflow.v1",
"id": "",
"name": "One send API — Send Message (generic)",
"version": "0",
"status": "draft",
"nodes": [
{
"id": "seed",
"type": "input.inject",
"label": "Marketing event",
"category": "trigger",
"config": {
"contentType": "application/json",
"payload": {
"message": "cart abandoned by ada@example.test"
}
},
"position": {
"x": 0,
"y": 23
}
},
{
"id": "send",
"type": "output.send-message",
"label": "Send (generic)",
"category": "communication",
"config": {
"provider": "generic",
"url": "https://httpbin.org/post",
"messagePath": "message",
"expectOk": true
},
"position": {
"x": 530,
"y": 23
}
},
{
"id": "out",
"type": "utility.console",
"label": "Forwarded",
"category": "utility",
"config": {
"message": "event forwarded"
},
"position": {
"x": 1060,
"y": 0
}
}
],
"edges": [
{
"id": "e0",
"sourceNodeId": "seed",
"sourcePort": "output",
"targetNodeId": "send",
"targetPort": "input"
},
{
"id": "e1",
"sourceNodeId": "send",
"sourcePort": "output",
"targetNodeId": "out",
"targetPort": "input"
}
],
"triggers": [
{
"id": "t0",
"nodeId": "seed"
}
],
"meta": {
"snippets": [],
"source": "template-gallery",
"description": "Send Message speaks a GENERIC webhook dialect too — one node, any provider. This demo posts to a public echo endpoint (needs internet); point url at Slack/Teams/PagerDuty webhooks in production."
}
} Generated from the verified demo corpus — this exact document seeds and runs on a fresh Flowdrome. Raw JSON: one-send-api-send-message-generic.json.