Supabase Webhook help
I have some steps in the signup form , first includes adding first name , last name , phone , and second is email and password . I was looking for a solution to save che first step info in the table users _info , but only after validation . Considering validation is happening from an url in a new window , I want something that after the api signup responds to call a new api for updating the users _info table . Found out that webhooks could work in this case , but never used it . Can you please help me understand better how to use webhooks and if is a solution for what I want to achieve ? Is there something better ? Thank you ! The goal of it There could be different ways to go about it I have in one shot "First Name , Last Name , Phone , Email and Password . " By clicking on the "create account " I 'm calling the api to create account . After creating the account I receive a response of the api with the auth ID and on email the link with the token . Is there a way after the response of the "SignUp with the auth ID " to save the first name , last name , phone on the table users _info ? Users _info is with auth users insert only . Trigger off new row in auth .users INSERT new row into users _info You can probably use supabase AI to give you the SQL for it Probably easier to do that lol The auth endpoint has all that data