Retrieve a paginated list of workflows registered for your organization.
Endpoint
GET /v1/accounts/:accountId/workflows
Authentication
Bearer token required.
Query Parameters
Number of workflows to return. Maximum 100.
Number of workflows to skip.
Case-insensitive partial match on workflow name.
Response
Array of workflow objects.
Total number of workflows.
Example
curl "https://api.collab-kit.com/v1/accounts/${ACCOUNT_ID}/workflows?limit=10" \
-H "Authorization: Bearer ${TOKEN}"
{
"type": "response",
"success": true,
"description": "Workflows retrieved",
"data": {
"workflows": [
{
"id": "wf_abc123",
"organization_id": "a1b2c3d4-...",
"name": "Welcome message",
"code": "export default async function(event, { store, room }) { ... }",
"events": ["participant.joined"],
"room_id": null,
"enabled": true,
"created_at": "2026-05-29T10:00:00.000Z",
"updated_at": "2026-05-29T10:00:00.000Z"
}
],
"total": 1,
"limit": 10,
"offset": 0
},
"error": null
}