Skip to main content
GET
/
v1
/
flow-runs
cURL
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>",
      "failParentOnFailure": true,
      "flowVersionId": "<string>",
      "status": "FAILED",
      "environment": "PRODUCTION",
      "parentRunId": "<string>",
      "tags": [
        "<string>"
      ],
      "flowVersion": {
        "displayName": "<string>"
      },
      "logsFileId": "<string>",
      "startTime": "<string>",
      "finishTime": "<string>",
      "failedStep": {
        "name": "<string>",
        "displayName": "<string>"
      },
      "stepNameToTest": "<string>",
      "archivedAt": null,
      "stepsCount": 123
    }
  ],
  "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>[]
Available options:
FAILED
limit
number
cursor
string
createdAfter
string
createdBefore
string
projectId
string
required
failedStepName
string
flowRunIds
string[]
archived
boolean

Response

200 - application/json

Default Response

data
object[]
required
next
string | null

Cursor to the next page

previous
string | null

Cursor to the previous page