# Mappable parameters

Mappable parameters can either be filled in by the user or mapped from previous modules.

Mappable parameters use [parameters syntax](/custom-apps-documentation/block-elements/parameters.md).

{% tabs %}
{% tab title="Appearance" %}

<div align="left"><figure><img src="/files/DU0fpeozloGVoEJJFE6L" alt="" width="548"><figcaption></figcaption></figure></div>
{% endtab %}

{% tab title="Code" %}

```json
[
	{
		"name": "email",
		"type": "email",
		"label": "Email address",
		"required": true
	},
	{
		"name": "name",
		"type": "text",
		"label": "Name",
		"required": true
	},
	{
		"name": "newsletter",
		"type": "boolean",
		"label": "Send newsletter?",
		"default": false,
		"required": true
	},
	{
		"name": "size",
		"type": "select",
		"label": "T-Shirt size",
		"options": [
			{
				"label": "S",
				"value": "s"
			},
			{
				"label": "M",
				"value": "m"
			},
			{
				"label": "L",
				"value": "l"
			}
		]
	}
]
```

{% endtab %}
{% endtabs %}

You can use [Remote Procedure Calls (RPCs)](/custom-apps-documentation/app-components/rpcs/dynamic-fields-rpc.md) to generate parameters dynamically.

Learn more about [best practices regarding mappable parameters](/custom-apps-documentation/best-practices/input-parameters/mappable-parameters.md).


---

# 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://developers.make.com/custom-apps-documentation/component-blocks/mappable-parameters.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.
