Using the new automations feature, I am trying to trigger an Integromat webhook when a new record enters a view.
However even though I have configured an input variable, and it is processing just fine, it won’t parse into the webhook URL.
I’ve attached some screenshots which hopefully explain what I mean.
The code I’m using is:
let data = input.config();
let response = await fetch('WEBHOOKURL?id=${data.ID}');
console.log(await response.text());
The test output shows the variable is picked up:
However the webhook receives only the code:
Would love some help - I’m sure I’m missing something very simple here…