Skip to main content
GET
/
pipeline
/
{id}
/
logs
Get pipeline execution logs
curl --request GET \
  --url http://localhost:5173/api/flowdrop/pipeline/{id}/logs \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": [
    {
      "timestamp": "2023-11-07T05:31:56Z",
      "message": "<string>",
      "node_id": "<string>",
      "context": {}
    }
  ]
}

Authorizations

Authorization
string
header
required

JWT token for authentication

Path Parameters

id
string<uuid>
required

Pipeline UUID

Query Parameters

level
enum<string>

Filter by log level

Available options:
debug,
info,
warning,
error

Response

Pipeline logs retrieved successfully

success
boolean
data
object[]