‘UserID’ isn’t returning a value from my webhook. The option to add it in the map options wasn’t there so I tried to type manually {{UserID}} which still returns no value and results in missing parameter error
To resolve this issue, it’s recommended that you re-determine the data structure of your existing webhook when you’re in design mode of your scenario. This can be done by going to the Webhook module settings, clicking “Re-determine data structure,” and calling the webhook URL with sample data in the request body. This should make the “UserID” variable visible as an output of your webhook.
- Re-determine the data structure of an existing webhook going to the Webhook module settings, clicking Re-determine data structure, and calling the webhook URL with sample data in the request body.
Src.: https://www.make.com/en/help/tools/webhooks#setting-up-webhook-data-structure
To come back to the formula you’ve tried, you should add the module ID and the technical variable key name to your formula. This will result in the following combination: {{<module ID>.<technical key name>}}
. For example, in your case, it may be {{1.userId}}
.
Glenn - Callinetic