action webflow_get_workflows_workflow_id_executions_execution_id { label: "get_workflows_workflowId_executions_executionId" provider: webflow method: GET path: "/workflows/{workflowId}/executions/{executionId}" encoding: json input: { type: "object" properties: { executionId: { type: "string" } workflowId: { type: "string" } } required: ["executionId", "workflowId"] additionalProperties: false } output: { type: "object" required: ["endTime", "executionId", "input", "output", "startTime", "status", "transitionExecutions", "workflowId"] properties: { completedBy: { type: "array" items: { type: "object" } } completedTaskLogId: { type: "string" } endTime: { type: "string" } events: { type: "array" items: { type: "object" } } executionId: { type: "string" } input: { type: "object" } logId: { type: "string" } output: { type: "object" } startTime: { type: "string" } status: { type: "string" enum: ["running", "succeeded", "failed", "rejected", "retry", "error"] } transitionExecutions: { type: "object" } workflowId: { type: "string" } } additionalProperties: false } }