Link in email have to trigger process model

Certified Associate Developer

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?

  Discussion posts and replies are publicly visible

Parents
  • 0
    Certified Senior Developer

    Hi ,

    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
    )

Reply
  • 0
    Certified Senior Developer

    Hi ,

    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
    )

Children