# Form Integration

## Configuration

When using the Form module, you have to ability enable POST integration. With this setting enabled, when the users clicks the “Submit” button in the Form, the values entered by the user will be sent via a POST request to the endpoint specified under the Form Settings.

The setting needed for enabling POST integration, is shown below:

<figure><img src="/files/JFyZ4bQ4LQ7IC91V0Fld" alt=""><figcaption></figcaption></figure>

## Receiving data from Form POST integration

The values received by the endpoint, will come in form of standard Web Form values. Each value will have a key corresponding the the “Name” value of the form element. Looking at the overview of your Form, you will a list of all Name of all form fields.

{% hint style="warning" %}
**Important:**

Please note that the “Name” value is an internal name not visible by the end-user, as not to confuse with the “Label” value
{% endhint %}

For the form in the figure below, the data received by the endpoint would be:

```
Name=Value&Address=Value&Email=Value
```

<figure><img src="/files/FA0yEXTuwcurYTirGAlZ" alt=""><figcaption></figcaption></figure>


---

# Agent Instructions: 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.ipaper.io/flipbook-integration/form-integration.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.
