GET
/
v1
/
flows
curl --request GET \
  --url https://cloud.activepieces.com/api/v1/flows/ \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "created": "<string>",
      "updated": "<string>",
      "projectId": "<string>",
      "folderId": "<string>",
      "status": "ENABLED",
      "schedule": {
        "type": "CRON_EXPRESSION",
        "cronExpression": "<string>",
        "timezone": "<string>"
      },
      "publishedVersionId": "<string>",
      "version": {
        "id": "<string>",
        "created": "<string>",
        "updated": "<string>",
        "flowId": "<string>",
        "displayName": "<string>",
        "trigger": {
          "name": "<string>",
          "valid": true,
          "displayName": "<string>",
          "nextAction": "<any>",
          "type": "PIECE_TRIGGER",
          "settings": {
            "pieceName": "<string>",
            "pieceVersion": "<string>",
            "pieceType": "CUSTOM",
            "packageType": "ARCHIVE",
            "triggerName": "<string>",
            "input": {},
            "inputUiInfo": {
              "currentSelectedData": "<any>",
              "customizedInputs": {},
              "lastTestDate": "<string>"
            }
          }
        },
        "updatedBy": "<string>",
        "valid": true,
        "state": "LOCKED"
      }
    }
  ],
  "next": "<string>",
  "previous": "<string>"
}

Authorizations

Authorization
string
header
required

Use your api key generated from the admin console

Query Parameters

folderId
string
limit
number
cursor
string
status
Available options:
ENABLED
projectId
string
required

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