action webflow_get_deployment_environments { label: "get_deploymentEnvironments" provider: webflow method: GET path: "/deploymentEnvironments" encoding: json input: { type: "object" properties: { maxResults: { type: "string" } nextToken: { type: "string" } owner: { type: "string" } } additionalProperties: false } output: { type: "object" required: ["deploymentEnvironments", "nextToken"] properties: { deploymentEnvironments: { type: "array" items: { type: "object" required: ["deploymentEnvironmentId", "description", "modelDeploymentUnits", "name", "organizationId", "status"] properties: { deploymentEnvironmentId: { type: "string" } description: { type: "string" } modelDeploymentUnits: { type: "integer" } name: { type: "string" } organizationId: { type: "string" } status: { type: "string" enum: ["available", "unavailable"] } } additionalProperties: false } } nextToken: { type: "string" } } additionalProperties: false } }