action webflow_get_transitions_transition_id_executions { label: "get_transitions_transitionId_executions" provider: webflow method: GET path: "/transitions/{transitionId}/executions" encoding: json input: { type: "object" properties: { executionId: { type: "string" } maxResults: { type: "string" } nextToken: { type: "string" } order: { type: "string" } sortBy: { type: "string" } status: { type: "string" } transitionId: { type: "string" } } required: ["transitionId"] additionalProperties: false } output: { type: "object" required: ["executions", "nextToken", "transitionId"] properties: { executions: { type: "array" items: { type: "object" required: ["completedBy", "executionId", "input", "status", "transitionId"] properties: { completedBy: { type: "string" } endTime: { type: "string" } executionId: { type: "string" } input: { type: "object" } logId: { type: "string" } startTime: { type: "string" } status: { type: "string" enum: ["running", "succeeded", "failed", "rejected", "retry"] } transitionId: { type: "object" } } additionalProperties: false } } nextToken: { type: "string" } status: { type: "array" items: { type: "string" enum: ["running", "succeeded", "failed", "rejected", "retry"] } } transitionId: { type: "object" } } additionalProperties: false } }