# Params (WebApps)

<figure><img src="https://476758574-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FVctm8W2AAd8SbIYUaj27%2Fuploads%2FMOqoMf8JCXNl5LYTpmOW%2FParams.gif?alt=media&#x26;token=14c65986-1d92-4a6e-ab61-e5af048cae6c" alt=""><figcaption></figcaption></figure>

{% hint style="danger" %}
This process is only available for web apps, not to be confused with deep links.
{% endhint %}

**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/<mark style="color:red;background-color:green;">**PromoCode50**</mark>

<figure><img src="https://476758574-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FVctm8W2AAd8SbIYUaj27%2Fuploads%2FwxOhOy01Jrpzyqh5DPT5%2Falias.gif?alt=media&#x26;token=4bdac5b3-0651-4725-96d2-3911c2dc6a09" alt=""><figcaption></figcaption></figure>

**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/<mark style="color:red;background-color:green;">**CDT50**</mark>

{% hint style="warning" %}
Remember that in the URL, you must put the value to be sent to your process input, not the name you declared
{% endhint %}

<figure><img src="https://476758574-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FVctm8W2AAd8SbIYUaj27%2Fuploads%2F0eOoz1wnwLRp88Uegq4B%2Fpathsss.gif?alt=media&#x26;token=a31f4429-0985-4cea-8302-0be3842eb9c7" alt=""><figcaption></figcaption></figure>

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

example : :cuponeCode/:date

url : users.myDomain.com/PromoCode50/<mark style="color:red;background-color:green;">**CDT50/02052023**</mark>

<figure><img src="https://476758574-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FVctm8W2AAd8SbIYUaj27%2Fuploads%2FL02BKozSaMjzs6PNgtJp%2Fpathsss2.gif?alt=media&#x26;token=d99a1a72-c119-4ee0-bb0a-571b02ef7359" alt=""><figcaption></figcaption></figure>

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/<mark style="color:red;background-color:green;">**CDT50/date/02052023**</mark>

<figure><img src="https://476758574-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FVctm8W2AAd8SbIYUaj27%2Fuploads%2FTGMWcokSw1IyG42LQONh%2Fpathsss3.gif?alt=media&#x26;token=d1e5276b-97d1-4403-9b95-b7d0ec7dacf6" alt=""><figcaption></figcaption></figure>
