Create User

LLM-friendly URL
POST
https://api.luzmo.com/0.1.0/user
API call form
Examples

Any new user that is created without an API token is automatically assigned to a new organization. Users can be created by anyone (even without a login token) in order to bootstrap the process to create a new organization from scratch. An organization owner can use an API token to add a new user directly to the organization. This is the only way to add users to your organization, you can't associate users to organizations after their creation.

Parameters
Expand all Reset
properties *OBJECTrequired
email *EMAILrequired
name STRING
city STRING
phone STRING
theme STRING
warp_notifications BOOLEAN
show_formula_tutorial BOOLEAN
show_dashboard_templates BOOLEAN
onboarding_menu_visible BOOLEAN
onboarding_editor_active BOOLEAN
onboarding_editor_progress NUMBER
collection_order ARRAY[STRING]
company Multilingual string
role STRING
suborganization STRING
campaign STRING
timezone_id UUID
feature_overrides ARRAY
onboarding_integration_progress STRING
onboarding_embedded_editor_progress NUMBER
account_overrides OBJECT
Can be executed by:
Logged-in User
Organization Owner
Can be associated to:
Account
Alert
Authorization
Dashboard
Dataset
Group
Collection
Organization
Plugin
Schedule
Did this page help you?
Yes No
Language
Shell
Node
Java
.NET
Python
PHP
Install
npm install @luzmo/nodejs-sdk
Example Response
200
400
500
{
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "email": "john.doe@example.com",
  "name": "John Doe",
  "city": "BigCity",
  "phone": "+1234567890",
  "theme": "light",
  "warp_notifications": false,
  "show_formula_tutorial": true,
  "show_dashboard_templates": true,
  "onboarding_menu_visible": true,
  "onboarding_editor_active": true,
  "onboarding_editor_progress": 50,
  "collection_order": [
    "item1",
    "item2",
    "item3"
  ],
  "company": {
    "en": "Company Name"
  },
  "role": "member",
  "suborganization": "SubOrgName",
  "plan": "basic",
  "cycle": "monthly",
  "currency": "USD",
  "campaign": "campaign_name",
  "timezone_id": "Europe/Brussels",
  "feature_overrides": [
    "!flag_alerting",
    "flag_opendataboard"
  ],
  "onboarding_integration_progress": "complete",
  "onboarding_embedded_editor_progress": 25
}