We have a Zapier trigger, which uses a dynamic inputField for choosing the correct counterpart in our software. When setting up a Zap, the user always sees a dialog containing the dynamic dropdown. if there is only one value available in the dropdown (99% of all usages), the dialog should be skipped. Is there a way to achieve this?
operation: {
inputFields: [
{
key: 'blockid',
type: 'string',
label: 'Select Trigger',
helpText: 'Pick the trigger in your Ultradox automation.',
dynamic: 'blockid.id.title'
}
],
...