The Backend User object
The Backend User object is similar to the User object as it holds information about a user of your application, such as their unique identifier, name, email addresses, phone numbers, and more. However, the Backend User object is different from the User object in that it is used in the Backend API and is not directly accessible from the Frontend API.
Properties
- Name
-
emailAddresses - Type
EmailAddress[]- Description
An array of all the
EmailAddressobjects associated with the user. Includes the primary.
- Name
-
externalAccounts - Type
ExternalAccount[]- Description
An array of all the
ExternalAccountobjects associated with the user via OAuth. Note: This includes both verified & unverified external accounts.
- Name
-
legalAcceptedAt - Type
null | number- Description
The unix timestamp of when the user accepted the legal requirements.
nullif Require express consent to legal documents is not enabled.
- Name
-
phoneNumbers - Type
PhoneNumber[]- Description
An array of all the
PhoneNumberobjects associated with the user. Includes the primary.
- Name
-
primaryWeb3WalletId - Type
null | string- Description
The ID for the
Web3Walletthat the user signed up with.
- Name
-
privateMetadata - Type
UserPrivateMetadata- Description
Metadata that can be read and set only from the Backend API.
- Name
-
publicMetadata - Type
UserPublicMetadata- Description
Metadata that can be read from the Frontend API and Backend API and can be set only from the Backend API.
- Name
-
samlAccounts - Type
SamlAccount[]- Description
An array of all the
SamlAccountobjects associated with the user via SAML.
- Name
-
web3Wallets - Type
Web3Wallet[]- Description
An array of all the
Web3Walletobjects associated with the user. Includes the primary.
- Name
-
primaryEmailAddress - Type
null | EmailAddress- Description
The primary email address of the user.
- Name
-
primaryPhoneNumber - Type
null | PhoneNumber- Description
The primary phone number of the user.
- Name
-
primaryWeb3Wallet - Type
null | Web3Wallet- Description
The primary web3 wallet of the user.
Feedback
Last updated on
Edit on GitHub