How to create a django login user and authorize it from Auth0

Hi, I have successfully launched a default React Project from Auth0 to authenticate my users via the React APP and able to send Public and Private API call to another Django Auth0 project where a RBAC and API permission is used.

The issue is I have my own database hosted in AWS RDS to provide data as a source to my Web Applications, when a User is authenticated by the react app using Auth0 and sends a request to a GET API the Django can’t authenticate it since the same user is not in my DB where the Django is connected.

Do I need to host my tables in the Auth0 database or how does Django can authorize the API call without a user account locally? Any help is appreciated.