Skip to main content
GET
/
v1
/
dashboards
/
executions
Get Dashboard Execution Summary
curl --request GET \
  --url https://flowker.sandbox.lerian.net/v1/dashboards/executions \
  --header 'X-API-Key: <api-key>'
{
  "total": 150,
  "completed": 120,
  "failed": 25,
  "pending": 3,
  "running": 2
}

Authorizations

X-API-Key
string
header
required

API key for authenticating requests to the Flowker API. Provisioned via the API_KEY environment variable during deployment.

Query Parameters

startTime
string<date-time>

Start of the time range filter (RFC 3339 format).

endTime
string<date-time>

End of the time range filter (RFC 3339 format).

status
enum<string>

Filter results by execution status.

Available options:
pending,
running,
completed,
failed

Response

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

Aggregated summary of workflow executions.

total
integer

Total number of executions matching the filters.

Example:

150

completed
integer

Number of completed executions.

Example:

120

failed
integer

Number of failed executions.

Example:

25

pending
integer

Number of pending executions.

Example:

3

running
integer

Number of currently running executions.

Example:

2