Hi @spikeedoo14
In general, Auth0’s user database should only hold the auth information about the user, and your backend should have a database with all other info about the user.
To connect the two, you need a unique ID. This can come from your DB or you can use Auth0’s user_id.
When you create a user, you must add an entry to your DB that notes that the new user is tied to Auth0 info via this ID.
Then make sure that ID is in your access token.
John