Spaces method and path for this operation:
get /s/{space_id}/api/workflows/executions/{executionId}/logs
Refer to Spaces for more information.
Retrieve paginated logs for a workflow execution. Optionally filter by a specific step execution.
[Required authorization] Route required privileges: workflowsManagement:readExecution.
GET
/api/workflows/executions/{executionId}/logs
curl
curl \
-X GET "${KIBANA_URL}/api/workflows/executions/{executionId}/logs?size=100&page=1" \
-H "Authorization: ApiKey ${API_KEY}"
GET kbn://api/workflows/executions/{executionId}/logs?size=100&page=1
Response examples (200)
Example response returning paginated execution logs
{
"logs": [
{
"additionalData": {
"executionId": "exec-a1b2c3d4-e5f6-7890",
"workflowId": "workflow-a1b2c3d4-e5f6-7890-abcd-ef1234567890"
},
"connectorType": "console",
"duration": 150,
"id": "log-001",
"level": "info",
"message": "Workflow execution started",
"stepId": "hello_world_step",
"stepName": "Hello World",
"timestamp": "2025-11-20T12:00:01.000Z"
},
{
"additionalData": {
"executionId": "exec-a1b2c3d4-e5f6-7890",
"workflowId": "workflow-a1b2c3d4-e5f6-7890-abcd-ef1234567890"
},
"connectorType": "console",
"duration": 200,
"id": "log-002",
"level": "info",
"message": "Step completed successfully",
"stepId": "hello_world_step",
"stepName": "Hello World",
"timestamp": "2025-11-20T12:00:02.000Z"
}
],
"page": 1,
"size": 100,
"total": 2
}