FlowDrop Docs

Get pipeline execution logs

Retrieve detailed execution logs for a pipeline

GET
/pipeline/{id}/logs

Authorization

AuthorizationBearer <token>

JWT token for authentication

In: header

Path Parameters

id*string

Pipeline UUID

Formatuuid

Query Parameters

level?string

Filter by log level

Value in

  • "debug"
  • "info"
  • "warning"
  • "error"

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/pipeline/497f6eca-6276-4993-bfeb-53cbbbba6f08/logs"
{  "success": true,  "data": [    {      "timestamp": "2019-08-24T14:15:22Z",      "level": "debug",      "message": "string",      "node_id": "string",      "context": {}    }  ]}