Workflows are automations built in BuzzBip — welcome sequences, order updates, lead routing, and more. Trigger them programmatically when events occur in your own systems.
Endpoints
List workflows
bash
curl -H "Authorization: Bearer YOUR_API_KEY" "https://api.buzzbip.com/v1/workflows"Trigger a workflow
Pass the contact ID and an optional payload. Payload fields are available as variables inside the workflow.
json
// POST /workflows/wfl_order_update/trigger
{
"contactId": "cnt_abc123",
"payload": {
"orderId": "ORD-9876",
"total": "149.00 TND",
"status": "shipped"
}
}Response
json
{
"executionId": "exe_def456",
"workflowId": "wfl_order_update",
"contactId": "cnt_abc123",
"status": "started",
"startedAt": "2026-06-01T16:00:00Z"
}Build and test workflows in the BuzzBip visual editor at app.buzzbip.com before triggering them via API.
