action flat_update_organization_user { label: "Update account information" provider: flat method: PUT path: "/organizations/users/{user}" encoding: json input: { type: "object" description: "User update as an organization admin" properties: { email: { type: "string" format: "email" description: "Email of the account" } firstname: { type: "string" description: "First name of the user" } lastname: { type: "string" description: "Last name of the user" } organizationRole: { type: "string" description: "User's Organization Role (for Edu users only)" enum: ["admin", "billing", "teacher", "user"] } password: { type: "string" format: "password" description: "Password of the account" } username: { type: "string" description: "Username of the account" } } } output: { description: "User details (view for organization teacher / admin)" type: "object" } }