action webflow_post_signup { label: "post_signup" provider: webflow method: POST path: "/signup" encoding: json input: { type: "object" properties: { "Content-Type": { type: "string" } email: { type: "string" } name: { type: "string" } password: { type: "string" } reCaptchaResponse: { type: "string" } } required: ["Content-Type", "email", "password", "reCaptchaResponse"] additionalProperties: false } output: { type: "object" required: ["clientId", "username"] properties: { clientId: { type: "string" } username: { type: "string" } } additionalProperties: false } }