Hi, is this doc updated? https://app.supabase.io/p...
# help
m
Hi, is this doc updated? https://app.supabase.io/project/api?page=users I cannot find resetPasswordForEmail() in auth for Swift
n
Hello @mhaezaragoza! This thread has been automatically created from your message in #843999948717555735 a ``few seconds ago``. Pinging @User so that they see this as well! Want to unsubscribe from this thread? Right-click the thread in Discord (or use the ... menu) and select Leave Thread to unsubscribe from future updates. Want to change the title? Use the
/title
command! We have solved your problem? Click the button below to archive it.
s
n
mhaezaragoza (2022-03-31)
m
still nope
I'm using Supabase-swift 0.0.4 which i think is the latest
s
is the format similar to other api calls in swift? i mean client.auth.api....
m
yes
s
i am checking this file https://github.com/supabase-community/gotrue-swift/blob/main/Sources/GoTrue/GoTrueClient.swift i don't see a function for reset password
m
same here. checked the GoTrue Swift file and no reset password function
s
are you on pro tier?
m
was it forgotten? (ironically 😄 )
s
someone from supabase team would be able to assist you better
m
I have no idea what a pro tier is. I just started to use the library in our iOS app.
s
are you paid customer on supabase?
m
no
i dont think so
i'll ask my lead if our account is paid
s
👍
m
thanks @User ! i'll get back to you asap
s
you could make a post request with REST
Copy code
curl -X POST 'https://******.supabase.co/auth/v1/recover' \
-H "apikey: SUPABASE_KEY" \
-H "Content-Type: application/json" \
-d '{
  "email": "someone@email.com"
}'
m
I see. I'll try that.
thanks!