I’m wanting a way to push data to forge and am currently using a dynamically created web trigger. Are these unique per forge installation. As in, if two different users install my forge app and I receive their webtrigger, I can trust sending user specific information to them and it not going to the wrong user?
Hi @AustinTarango !
When you create a web trigger, Forge will create a url. This url is different for each installation and environment.
For example you installed your app
**domain** **environment**
domain1.atlassian.net development
domain1.atlassian.net staging
domain1.atlassian.net. production
domain2.atlassian.net development
domain2.atlassian.net staging
domain2.atlassian.net. production
All these urls will be different, that is why you can be sure that if you call the web trigger this only instance and environment will get the call.
1 Like
Perfect Thanks!