Overview
Depending on your need, OneAuxilia provides a set of tools to manage your users. You can manage user information in the frontend using OneAuxilia's prebuilt components, or JavaScript methods, or in the backend using the Open API.
Understand the User
(Member) object
User
(Member) objectThe User
object holds all of the information for a single user of your application and provides a set of methods to manage their account.
A User
object holds profile data like the user's name, profile picture, and a set of metadata that can be used internally to store arbitrary information. The metadata are split into publicMetadata
and privateMetadata
. Both types are set from the Backend API, but public metadata can be accessed from the Frontend API as well.
Each User
has at least one authentication identifier, which might be their email address, phone number, or a username.
A user can be contacted at their primary email address or primary phone number. They can have more than one verified email address, but only one of them will be their primary email address. This goes for phone numbers as well; a user can have more than one, but only one phone number will be their primary. At the same time, a user can also have one or more external accounts by connecting to OAuth providers such as Google, Apple, Facebook, and many more.
For more information on the User
object, such as helper methods for retrieving and updating user information and authentication status, checkout the OneAuxilia SDK documentation.
Manage user information in the frontend
OneAuxilia provides the prebuilt components <UserButton />
and <UserProfile />
in order to help your users manage their profile data.
If you are using React, the React SDK provides hooks to help manage user authentication and profile data.
Manage user information in the backend
OneAuxilia provides all the APIs so that customers can communicate with our system and get all the information related to their user(member)
For information about the User
operations available, such as GetProfile user
, UpdateProfile accounts
, and ChangePassword accounts
, check out the Open API reference docs.
Last updated