action webflow_post_workflows { label: "post_workflows" provider: webflow method: POST path: "/workflows" encoding: json input: { type: "object" properties: { "Content-Type": { type: "string" } completedConfig: { type: "object" required: ["imageUrl"] properties: { environment: { type: "object" } environmentSecrets: { type: "array" items: { type: "string" } } imageUrl: { type: "string" } secretId: { type: "string" } } additionalProperties: false } description: { type: "string" } errorConfig: { type: "object" properties: { email: { type: "string" } manualRetry: { type: "boolean" } } additionalProperties: false } name: { type: "string" } specification: { type: "object" required: ["definition"] properties: { definition: { type: "object" } language: { type: "string" enum: ["ASL"] } version: { type: "string" enum: ["1.0.0"] } } additionalProperties: false } } required: ["Content-Type", "specification"] 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 } }