I am signing up users using the https://stitch.mongodb.com/api/client/v2.0/app/client-app-id/auth/providers/local-userpass/register
endpoint from my server, which takes email & password on a POST request. However, it does not return the user ID. Is there any way I could get the user ID at this point? I would like to then create a user document with that ID to store additional fields from my signup form.
Currently, I have to wait until the user logs in and then redirect them to a form to finish getting the rest of the info, which is not ideal.