Skip to main content
February 16, 2024
Question

Link in email have to trigger process model

  • February 16, 2024
  • 6 replies
  • 0 views

Hi,

I have a page in my site that has a grid with cases and on click of case id which has the process start link and that navigated to a user input Task interface. My requirement is that from an email, I want the caseid to trigger process and navigate to the user input interface in the site. How can i get this done? How can I get that process link?

    6 replies

    harshm4411
    February 16, 2024

    Hey,

    To trigger the process model through an email, please go through this blog for a better understanding.
    https://appianspace.com/2023/07/06/trigger-process-from-email/

    harshitb6843
    February 16, 2024

    I am not sure if I understood what you mean by this

    from an email, I want the caseid to trigger process and navigate to the user input interface in the site
    stefanhelzle0001
    February 16, 2024

    Appian does not support to start a process from a link inside an email.

    niranjanreddym9323
    February 20, 2024

    Hi[mention:09396bade13949bc9c28bdead584ad6a:e9ed411860ed4f2ba0265705b8793d05] ,

    you can generate the start process link as below in appian and pass it to email, so when you click on that it will opens with process start form

    "https://your_site_url/suite/sites/sitename/page/page-name/start-process/"&tostring(
      a!startProcessLink(
        label: "",
        processModel: cons!NS_PM_GEN_REPRT,
        
      ).processModelOpaqueId
    ),
    "?parameters=",
    tostring(
      a!startProcessLink(
        label: "",
        processModel: cons!NS_PM_GEN_REPRT,
        processParameters: {
          reqId:1
        }
      ).cacheKey
    )

    March 4, 2024

    i think this implementation is user specific. other user can not access this link.