The User Object
Users represent end-users in your application. Each user can have multiple authentication methods and custom metadata.Attributes
Unique identifier for the user (app user ID)Example:
usr_1234567890Application ID this user belongs to
Base user ID (platform-level identifier)
User status. Can be
active, pending, inactive, or importedExample: activeUser email addressExample:
user@example.comUser phone numberExample:
+1234567890User full nameExample:
John DoeWhether the user’s email has been verifiedExample:
trueWhether the user’s phone has been verifiedExample:
falseNumber of times the user has logged inExample:
42ISO 8601 timestamp of the user’s last login
Custom metadata object with user-defined fieldsExample:
{ "first_name": "John", "last_name": "Doe", "company": "Acme Corp" }ISO 8601 timestamp when the user was created
ISO 8601 timestamp when the user was last updated