action webflow_get_workflows_workflow_id { label: "get_workflows_workflowId" provider: webflow method: GET path: "/workflows/{workflowId}" encoding: json input: { type: "object" properties: { workflowId: { type: "string" } } required: ["workflowId"] additionalProperties: false } output: { type: "object" required: ["completedConfig", "createdBy", "createdTime", "description", "errorConfig", "name", "numberOfRunningExecutions", "updatedBy", "updatedTime", "workflowId"] properties: { completedConfig: { type: "object" required: ["imageUrl"] properties: { environment: { type: "object" } environmentSecrets: { type: "array" items: { type: "string" } } imageUrl: { type: "string" } secretId: { type: "string" } } additionalProperties: false } createdBy: { type: "string" } createdTime: { type: "string" } description: { type: "string" } errorConfig: { type: "object" properties: { email: { type: "string" } manualRetry: { type: "boolean" } } additionalProperties: false } name: { type: "string" } numberOfRunningExecutions: { type: "integer" } updatedBy: { type: "string" } updatedTime: { type: "string" } workflowId: { type: "string" } } additionalProperties: false } }