GET
/
v1
/
flow-runs
curl --request GET \
  --url https://cloud.activepieces.com/api/v1/flow-runs \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "created": "<string>",
      "updated": "<string>",
      "projectId": "<string>",
      "flowId": "<string>",
      "tags": [
        "<string>"
      ],
      "flowVersionId": "<string>",
      "flowDisplayName": "<string>",
      "logsFileId": "<string>",
      "tasks": 123,
      "status": "FAILED",
      "duration": 123,
      "startTime": "<string>",
      "finishTime": "<string>",
      "environment": "PRODUCTION",
      "failedStepName": "<string>"
    }
  ],
  "next": "<string>",
  "previous": "<string>"
}

Authorizations

Authorization
string
header
required

Use your api key generated from the admin console

Query Parameters

flowId
string[]
tags
string[]
status
enum<string>[]
limit
number
cursor
string
createdAfter
string
createdBefore
string
projectId
string
required
failedStepName
string

Response

200 - application/json

Default Response

The response is of type object.