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