How to make the parameter's "map" button turned on by default in custom Integromat app?

307 Views Asked by At

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

There are 1 best solutions below

0
On BEST ANSWER

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.