action webflow_get_assets { label: "get_assets" provider: webflow method: GET path: "/assets" encoding: json input: { type: "object" properties: { maxResults: { type: "string" } nextToken: { type: "string" } } additionalProperties: false } output: { type: "object" required: ["assets", "nextToken"] properties: { assets: { type: "array" items: { 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 } } nextToken: { type: "string" } } additionalProperties: false } }