<@U04UQ68083H> I want to set the verification url ...
# ory-copilot
h
@chilly-king-10285 I want to set the verification url in after my browser registration flow to http//localhost3000/verify-email. How do i do that?
c
A message from kapa.ai
To set the verification URL after your browser registration flow, you need to append the
after_verification_return_to
parameter to the Browser Registration Init endpoint. The value of this parameter should be the URL you want to redirect to after the verification flow is completed. In your case, you would append
after_verification_return_to=<http://localhost:3000/verify-email>
to the Browser Registration Init endpoint. Here is an example of how you would do this:
Copy code
<https://public.url/self-service/registration/browser?after_verification_return_to=http://localhost:3000/verify-email>
Please replace
<https://public.url>
with your actual Ory Kratos public URL. For more information, you can refer to the [Ory Kratos Documentation](https://www.ory.sh/docs/kratos/concepts/browser-redirect-flow-completion#post-verification-redirection).