## Create `client.users.create(UserCreateParamsbody?, RequestOptionsoptions?): User` **post** `/user` This can only be done by the logged in user. ### Parameters - `body: UserCreateParams` - `id?: number` - `email?: string` - `firstName?: string` - `lastName?: string` - `password?: string` - `phone?: string` - `username?: string` - `userStatus?: number` User Status ### Returns - `User` - `id?: number` - `email?: string` - `firstName?: string` - `lastName?: string` - `password?: string` - `phone?: string` - `username?: string` - `userStatus?: number` User Status ### Example ```typescript import JustinDocsTest from 'justin-docs-test'; const client = new JustinDocsTest({ apiKey: 'My API Key', }); const user = await client.users.create(); console.log(user.id); ```