{
"message": "Workflows retrieved successfully",
"success": true,
"data": {
"items": [
{
"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" },
{ "id": "slack-1", "kind": "slack_send_channel_message", "name": "Send Summary" }
],
"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"
},
{
"id": "wf_def789",
"name": "Lead scoring draft",
"description": "Score inbound leads via AI",
"workflow": {
"trigger": { "kind": "workflows/new-post", "inputs": {} },
"actions": [],
"edges": []
},
"enabled": false,
"status": "DRAFT",
"social_saved_search_id": null,
"created": "2026-04-14T09:00:00.000Z",
"updated": "2026-04-14T09:00:00.000Z"
}
],
"has_more": true,
"total": 42
}
}