v1

latestOpenAPI 3.0.0Proprietary2026-08-062711471.0 MB
Flows

List flows for an agent

Returns a list of flows associated with a specific agent. Nodes and logic are excluded.

get/public/v1/agents/{agentId}/flows

Path parameters

agentIdstring required
Example:uuid-xxxx-xxxx

Query parameters

status'ACTIVE' | 'SUSPENDED' | 'DELETED' | 'DRAFT'
Example:ACTIVE

Response

A list of flows

Example response

{
  "results": [
    {
      "id": 101,
      "name": "Order Retrieval",
      "description": "Extracts order info from DB",
      "status": "ACTIVE",
      "createdAt": "2024-01-01T12:00:00Z",
      "updatedAt": "2024-01-01T12:00:00Z",
      "runCount": 450
    }
  ]
}