Hi there, I am thinking about using supertokens fo...
# support-questions-legacy
j
Hi there, I am thinking about using supertokens for our intenal admin app. We don't want to allow our users to signup, but want to create users through the user management dashboard. Is that supported?
n
Hi @jamalm8656 , You can disable the sign up flow but at the moment the user dashboard does not allow creating new users. You can call functions exposed by the backend SDK manually to create users instead
j
I see. Would I use, for example, /auth/signup for creating users?
n
If you want to use APIs you can refer to this spec: https://supertokens.com/docs/fdi But you can always run a simple server that creates users for you by calling functions directly. For example
EmailPassword.signUp
that way you wont have to manually call the APIs repeatedly
j
Awesome, that works. Thank you so much @nkshah2
n
Happy to help