Rank 3: Container
I'm working on a scenario - a user registers and is sent a verification email. This user ignores the email for a while and then clicks on the link after it expires.
At this point I only have the userId, the secret, and the expire query params. I want to display to the user that the link has expired but then also allow them to send a new link by a click of a button or something. But sending another verification email requires that the user has an active session but at this point I no longer have the email and the password they used to register, I basically only have the userId.
I couldn't find anything on the docs - account.get() doesn't seem to accept any parameters. And I also couldn't find a function to call where I simply pass the userId and I'll get the account info.
What's the proper flow for expired verification emails?