action webflow_get_workflows_workflow_id_executions { label: "get_workflows_workflowId_executions" provider: webflow method: GET path: "/workflows/{workflowId}/executions" encoding: json input: { type: "object" properties: { fromStartTime: { type: "string" } maxResults: { type: "string" } nextToken: { type: "string" } order: { type: "string" } sortBy: { type: "string" } status: { type: "string" } toStartTime: { type: "string" } workflowId: { type: "string" } } required: ["workflowId"] additionalProperties: false } output: { type: "object" required: ["executions", "nextToken", "workflowId"] properties: { executions: { type: "array" items: { 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 } } nextToken: { type: "string" } order: { type: "string" enum: ["ascending", "descending"] } sortBy: { type: "string" enum: ["startTime", "endTime"] } status: { type: "array" items: { type: "string" enum: ["running", "succeeded", "failed", "rejected", "retry", "error"] } } workflowId: { type: "string" } } additionalProperties: false } }