{
"message": "Workflow retrieved successfully",
"success": true,
"data": {
"id": "wf_abc123",
"name": "Summarise new posts to Slack",
"description": "AI-summarise each new post and post the summary to Slack",
"workflow": {
"trigger": { "kind": "workflows/new-post", "inputs": {} },
"actions": [
{
"id": "agent-1",
"kind": "generic_agent",
"name": "Summarise Post",
"inputs": {
"outputFormat": "text",
"model": "openai/gpt-5-mini",
"prompt": "Summarise this social post in two concise bullet points: {{ !ref($.trigger.outputs.text) }}"
}
},
{
"id": "slack-1",
"kind": "slack_send_channel_message",
"name": "Send Summary",
"inputs": {
"channel": "#social-alerts",
"message": "New post summary: {{ !ref($.agent-1.result.output) }}"
}
}
],
"edges": [
{ "from": "$source", "to": "agent-1" },
{ "from": "agent-1", "to": "slack-1" }
]
},
"enabled": true,
"status": "PUBLISHED",
"social_saved_search_id": "ss_xyz456",
"created": "2026-04-01T10:00:00.000Z",
"updated": "2026-04-12T14:20:00.000Z"
}
}