action webflow_post_assets { label: "post_assets" provider: webflow method: POST path: "/assets" encoding: json input: { type: "object" properties: { "Content-Type": { type: "string" } content: { type: "string" } description: { type: "string" } name: { type: "string" } } required: ["Content-Type", "content"] additionalProperties: false } output: { type: "object" required: ["assetId", "contentMD5", "createdBy", "createdTime", "description", "name", "updatedBy", "updatedTime"] properties: { assetId: { type: "string" } content: { type: "string" } contentMD5: { type: "string" } createdBy: { type: "string" } createdTime: { type: "string" } description: { type: "string" } name: { type: "string" } updatedBy: { type: "string" } updatedTime: { type: "string" } } additionalProperties: false } }