action webflow_post_users { label: "post_users" provider: webflow method: POST path: "/users" encoding: json input: { type: "object" properties: { "Content-Type": { type: "string" } appClientId: { type: "string" } avatar: { type: "string" } email: { type: "string" } metadata: { type: "object" } name: { type: "string" } } required: ["Content-Type", "email"] additionalProperties: false } output: { type: "object" required: ["createdBy", "createdTime", "email", "updatedBy", "updatedTime", "userId"] properties: { avatar: { type: "string" } createdBy: { type: "string" } createdTime: { type: "string" } email: { type: "string" } metadata: { type: "object" } name: { type: "string" } profileId: { type: "string" } updatedBy: { type: "string" } updatedTime: { type: "string" } userId: { type: "string" } } additionalProperties: false } }