Skip to main content
GET
/
workflow
/
{workflow_id}
/
pipelines
List workflow pipelines
curl --request GET \
  --url http://localhost:5173/api/flowdrop/workflow/{workflow_id}/pipelines \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "workflow_id": "<string>",
      "status": "<string>",
      "created": "2023-11-07T05:31:56Z",
      "updated": "2023-11-07T05:31:56Z"
    }
  ],
  "message": "<string>",
  "error": "<string>"
}

Authorizations

Authorization
string
header
required

JWT token for authentication

Path Parameters

workflow_id
string
required

Workflow ID or machine name

Query Parameters

status
enum<string>

Filter by pipeline status

Available options:
pending,
running,
completed,
failed,
cancelled

Response

List of pipeline executions

success
boolean

Whether the request was successful

data
object[]

Response data (type varies by endpoint)

message
string

Response message

error
string

Error message (if any)