I want to redirect to my custom App end point after email verification. i.e., after user activation email link.
I think after email activation we need to set redirect uri.
I have tried online resources but no luck nothing worked for me.
You can use the fromUri query parameter to redirect the user after both activation and password reset. You will need to:
Update the email template which is sent to the user to include the fromUri parameter in the activation link so it would look like: ${activationLink}?fromURI=https://myoidcapp.com
Add the redirect uri to your trusted origins in OKTA under security -> API -> Trusted Origin -> Add Origin
@David_McNee, any thoughts on how the user activation email template would work if there are different applications and each one has its own domain which points to its unique login page? Is there a way to pass different bookmarks to the href="${activationLink}?fromURI ? Thank you.