Skip to main content

ExecutionDetailOut

idId (string)required
workflow_idWorkflow Id (string)required
workflow_nameWorkflow Name (string)required
execution_idExecution Id (string)required
trigger_sourceTrigger Source (string)required
trigger_data object
anyOf
object
statusStatus (string)required
current_step object
anyOf
integer
error_message object
anyOf
string
started_at object
anyOf
string
completed_at object
anyOf
string
duration_seconds object
anyOf
number
steps object[]required
  • Array [
  • step_indexStep Index (integer)required
    node_id object
    anyOf
    string
    step_nameStep Name (string)required
    step_typeStep Type (string)required
    statusStatus (string)required
    started_at object
    anyOf
    string
    completed_at object
    anyOf
    string
    duration_ms object
    anyOf
    number
    error_message object
    anyOf
    string
    input_data object
    anyOf
    object
    output_data object
    anyOf
    object
  • ]
  • ExecutionDetailOut
    {
    "id": "string",
    "workflow_id": "string",
    "workflow_name": "string",
    "execution_id": "string",
    "trigger_source": "string",
    "trigger_data": {},
    "status": "string",
    "current_step": 0,
    "error_message": "string",
    "started_at": "string",
    "completed_at": "string",
    "duration_seconds": 0,
    "steps": [
    {
    "step_index": 0,
    "node_id": "string",
    "step_name": "string",
    "step_type": "string",
    "status": "string",
    "started_at": "string",
    "completed_at": "string",
    "duration_ms": 0,
    "error_message": "string",
    "input_data": {},
    "output_data": {}
    }
    ]
    }