action webflow_get_transitions_transition_id { label: "get_transitions_transitionId" provider: webflow method: GET path: "/transitions/{transitionId}" encoding: json input: { type: "object" properties: { transitionId: { type: "string" } } required: ["transitionId"] additionalProperties: false } output: { type: "object" required: ["createdBy", "createdTime", "description", "name", "parameters", "timeoutInSeconds", "transitionId", "transitionType", "updatedBy", "updatedTime"] properties: { assets: { type: "object" properties: { jsRemoteComponent: { type: "string" } } } createdBy: { type: "string" } createdTime: { type: "string" } description: { type: "string" } inputJsonSchema: { type: "object" } name: { type: "string" } outputJsonSchema: { type: "object" } parameters: { type: "object" } timeoutInSeconds: { type: "integer" } transitionId: { type: "object" } transitionType: { type: "string" enum: ["docker", "manual"] } updatedBy: { type: "string" } updatedTime: { type: "string" } } additionalProperties: false } }