Select to view content in your preferred language

open pending workflow job from url 10.9.1

136
1
05-07-2025 04:58 AM
ChrisBerryman
Regular Contributor

I have a job that notifies for new account requests and kicks off an approval process, is it possible to have a current pending job get opened by URL to have someone do that approval process?  I know we can build a url with the job id, but what can we do about launching the job via URL once its assigned to someone?

0 Kudos
1 Reply
TiffanyWeintraub
Esri Contributor

Hello Chris,

You can build the URL dynamically for your email step using the User-defined Settings and Arcade. The HTML formatted line below can be added to the email body so that it has the URL that will take the receiver directly to the assigned job.

Please go to the URL and complete the assigned steps.<br /><br />' +
Setting('work_url') + '?q=' + jobName($job) + '

0 Kudos