action webflow_post_secrets { label: "post_secrets" provider: webflow method: POST path: "/secrets" encoding: json input: { type: "object" properties: { "Content-Type": { type: "string" } data: { type: "object" } description: { type: "string" } name: { type: "string" } } required: ["Content-Type", "data"] additionalProperties: false } output: { type: "object" required: ["createdBy", "createdTime", "description", "name", "secretId", "updatedBy", "updatedTime"] properties: { createdBy: { type: "string" } createdTime: { type: "string" } description: { type: "string" } name: { type: "string" } secretId: { type: "string" } updatedBy: { type: "string" } updatedTime: { type: "string" } } additionalProperties: false } }