Params (WebApps)

Params allow us to execute App Processes through a URL which can send information to our process input. A very common use case is for sharing referral links or specific posts within our app.

Function alias: The function alias is a short and easy-to-remember name that we use to call our app processes through the URL.

example : PromoCode50

url : users.myDomain.com/PromoCode50

Function params: Function path: Here we define the path order that will be concatenated to our web app domain in order to execute and receive information from our process inputs. To refer to a process input, we must prefix it with ":" followed by the process input name as declared in our app process.

example : :cuponeCode

url : users.myDomain.com/PromoCode50/CDT50

You can add more process inputs to your path by placing a "/" between each of them.

example : :cuponeCode/:date

url : users.myDomain.com/PromoCode50/CDT50/02052023

To have a better syntax in your URL, you can add sub-paths. These sub-paths do not have any value; they only help you have a better reading and understanding in your URL.

example : :cuponeCode/date/:date

url : users.myDomain.com/PromoCode50/CDT50/date/02052023

Last updated

Was this helpful?