I’m using Xano Auth and after sign up I redirect my users to another page that asks them for more information than just the locked name, email, password for the Xano Auth Plugin. My question is how do I add the extra input fields from the “Tell us more about yourself” page to my Xano User Database on the same line that has just been created for their sign up ?
Others can confirm as I’m definitely not an expert, but I think you need to update the user table that your Xano Auth is tied to, and you can get the id for that table from the Xano Auth user object in the WeWeb editor. You would then just have to add each of the fields from the ‘tell us more’ page to the user table, and then you could write to those fields with an API request.
Thanks for your help, it seems that is the right path but i’m getting at status 400 error. I am using a PUT/user/{user_id} API call is it the right endpoint ?