Any way to identify the web trigger url from within Forge's ui

I’m working on an app where the web trigger will be kinda important. Is there a way for an admin to get hold of a web trigger url? Or better yet - is it something I can calculate/fetch myself? (Ideally I would love to be able to show in the admin ui the web trigger url).

2 Likes

You can meanwhile use the webTrigger.getUrl() method and expose it to users as you see fit (added 19 May 2021):

Obtain the URL for the web trigger module specified by the given module key.

The web trigger URL is stable for each combination of:

  • module key
  • app
  • site
  • product
  • Forge environment
4 Likes

Awesome! Thank you!