# Creates a user and adds them to an organisation Creates a user and adds them to an organisation Endpoint: POST /organisations/users/ Version: v1 Security: Organisation ## Request fields (application/json): - `emailAddress` (string, required) Email Address of the user - `fullName` (string) Name of the user - `password` (string) Password for login - `loginViaSsoOnly` (string) Boolean to indicate if the user can only login via SSO (Password will be ignored) ## Response 200 fields (application/json): - `id` (string) Example: "ou_abc123def" - `firstName` (string) Example: "Pina" - `lastName` (string) Example: "Colada" - `fullName` (string) Example: "Pina Colada" - `userId` (string) Example: "usr_abc123def" - `emailAddress` (string) Example: "pina.colada@wia.io" - `isAdmin` (boolean) - `teams` (array) - `teams.name` (string) Example: "Test organisation" - `teams.members` (array) - `teams.members.organisationUserId` (string) Example: "ou_123abcdeg456"