action webflow_get_transitions_transition_id_executions_execution_id { label: "get_transitions_transitionId_executions_executionId" provider: webflow method: GET path: "/transitions/{transitionId}/executions/{executionId}" encoding: json input: { type: "object" properties: { executionId: { type: "string" } transitionId: { type: "string" } } required: ["executionId", "transitionId"] additionalProperties: false } output: { 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 } }