We have a form that will be accessed by public (anonymous) users.
When they click submit, we want to kick off a workflow, which will run some business logic to create a Redirect URL with some special query parameters. (We cannot run this logic on the form itself because it's proprietary and cannot be exposed to public users.)
We want to pass this Redirect URL created by Workflow back to the form BP and use it to redirect the user.
Is this possible?
For a logged in user, we would simply use a User Task and some JavaScript magic. But I'm trying to see if it's doable for anonymous users as well.