action webflow_post_workflows_workflow_id_executions { label: "post_workflows_workflowId_executions" provider: webflow method: POST path: "/workflows/{workflowId}/executions" encoding: json input: { type: "object" properties: { "Content-Type": { type: "string" } input: { type: "object" } workflowId: { type: "string" } } required: ["Content-Type", "input", "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 } }