> For the complete documentation index, see [llms.txt](https://docs.eximee.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.eximee.com/documentation/documentation-en/budowanie-aplikacji/logika-biznesowa/parametry-wejsciowe-formularza.md).

# Form input parameters

## Form input parameters <a href="#parametrywejscioweformularza-parametrywejscioweformularza" id="parametrywejscioweformularza-parametrywejscioweformularza"></a>

To pass parameters via the URL to the form, we need to define a variable or add the component to which we want to pass this parameter.

In the application edit view, in the left menu, select the option **Input parameters**, and then **Add input parameter**. As the value **Alias** we enter the alias name of the injected variable. **Alias** will be part of the URL address to the application page. As **Request component** we choose a field from the application or a session variable. We can also assign it a default value, which will be used if the parameter in the URL is not provided.

<figure><img src="/files/43950ed291c197204a31ab888551595974dd3cf7" alt=""><figcaption><p><em><strong>Figure 1.</strong> Form input parameters</em></p></figcaption></figure>

### **Ways to pass parameters**

1. Passing the parameter directly in the URL:\
   \
   <http://adres-do-platformy/?parametr=wartosc#/nazwa-wniosku>

{% hint style="danger" %}
**Passing the parameter**

You must pass the parameter correctly in the address. Correct example: <http://adres-do-platformy/?parametr=wartosc#/nazwa-wniosku>. The parameter must be before #.
{% endhint %}

2. Passing the parameter as a hidden input field:

```
<form action="#/application-name">
   <input class="redirect-button" type="submit" value="Go"/>
   <input type="hidden" id="parametr" name="parametr" value="wartosc"/>
</form>
```

### Input parameters of composite components

More information can be found in the section [Input parameters of the composite component](/documentation/documentation-en/budowanie-aplikacji/interfejs-uzytkownika/komponenty-rozszerzone/komponenty-zlozone.md#parametry-wejsciowe)

\ <br>


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.eximee.com/documentation/documentation-en/budowanie-aplikacji/logika-biznesowa/parametry-wejsciowe-formularza.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
