action webflow_get_logs { label: "get_logs" provider: webflow method: GET path: "/logs" encoding: json input: { type: "object" properties: { maxResults: { type: "string" } nextToken: { type: "string" } order: { type: "string" } transitionExecutionId: { type: "string" } transitionId: { type: "string" } workflowExecutionId: { type: "string" } workflowId: { type: "string" } } additionalProperties: false } output: { type: "object" required: ["logs", "nextToken"] properties: { logs: { type: "array" items: { type: "object" required: ["logId", "startTime", "transitionExecutionId", "transitionId", "workflowExecutionId", "workflowId"] properties: { events: { type: "array" items: { type: "object" } } logId: { type: "string" } startTime: { type: "string" } transitionExecutionId: { type: "string" } transitionId: { type: "object" } workflowExecutionId: { type: "string" } workflowId: { type: "string" } } additionalProperties: false } } nextToken: { type: "string" } order: { type: "string" enum: ["ascending", "descending"] } transitionExecutionId: { type: "string" } transitionId: { type: "object" } workflowExecutionId: { type: "string" } workflowId: { type: "string" } } additionalProperties: false } }