I am working on building a multi-level access using Xano and WeWeb.
I want to be able to have 2 level of authentications within the application. 1 based on organization and 1 based on user account.
If the user tries to access the application with an authorization token validating them to an Organization they can access certain parts of the application.
If the user tries to access the application with an authorization token associated with their personal account, they can access the Organization specific parts and their own account specific parts of the app.
I considered adding Token based Authentication but it looks like I can only use 1 authentication method in the app at a time. Would you recommend just using RestAPI to handle this? Or am I missing something here?