v1

latestOpenAPI 3.1.02026-07-263644911022.4 KB
Dashboard API

Get Dashboard Workflow Summary

Use this endpoint to retrieve an aggregated summary of workflows, including totals and breakdowns by status.

get/v1/dashboards/workflows/summary

Response

Indicates that the request was successful and the response contains the requested data.

totalinteger

Total number of workflows.

activeinteger

Number of currently active workflows.

Example response

{
  "total": 15,
  "active": 8,
  "byStatus": [
    {
      "status": "active",
      "count": 8
    }
  ]
}