action sinao_app_policies_registration_register { label: "Create an User by invitation" description: "Registration for an invited user" provider: sinao method: POST path: "/apps/access/invite/{accessToken}/register" encoding: json input: { type: "object" properties: { accessToken: { type: "string" } cgu: { type: "boolean" } firstname: { type: "string" } lastname: { type: "string" } password: { type: "string" } } required: ["accessToken", "cgu", "password"] additionalProperties: false } output: { type: "object" } }