- Get Started
- Product
- Resources
- Tools & SDKs
- Framework
- Reference
- Get Started
- Product
- Resources
- Tools & SDKs
- Framework
- Reference
User Creation Flows
In this document, learn the different ways to create a user using the User Module.
Straightforward User Creation#
To create a user, use the create method of the User Module’s main service:
You can pair this with the Auth Module to allow the user to authenticate, as explained in a later section.
Invite Users#
To create a user, you can create an invite for them using the createInvites method of the User Module's main service:
Later, you can accept the invite and create a new user for them:
Invite Expiry#
An invite has an expiry date. You can renew the expiry date and refresh the token using the refreshInviteTokens method:
Create Identity with the Auth Module#
By combining the User and Auth Modules, you can use the Auth Module for authenticating users, and the User Module to manage those users.
So, when a user is authenticated, and you receive the AuthIdentity
object, you can use it to create a user if it doesn’t exist:
1const { success, authIdentity } =2 await authModuleService.authenticate("emailpass", {3 // ...4 })5 6const [, count] = await userModuleService.listAndCountUsers({7 email: authIdentity.entity_id,8})9 10if (!count) {11 const user = await userModuleService.createUsers({12 email: authIdentity.entity_id,13 })14}