0

By default, my select parameter allows me to choose the value within options. To enter an ID from the previous app in the Scenario, I have to manually click on the 'map' button. How can the parameter's map mode be turned on by default? Screenshot

1 Answers1

0

Simply add the line "mode": "edit" to your select object, like so:

{
    "name": "currencyId",
    "type": "select",
    "label": "Currency",
    "options": "rpc://listCurrencies",
    "required": true,
    "mode": "edit"
}

This will turn the map button on by default.
The Integromat Best Practices docs describe the cases in which this setting should and should not be used.

Midimix
  • 281
  • 1
  • 2
  • 3