How to pass data to IFTTT WebHook?

 GhostKU  picture GhostKU · Aug 4, 2017 · Viewed 12.8k times · Source

I have a task to add row into Google Sheet when WebHook received. Now I'm trying to setup IFTTT but have some problem It says that I should use URL like https://maker.ifttt.com/trigger/{event}/with/key/{my_key} and that is ok I can do it. But it needs to send some data in request and the only way my system can do it appends it to query string like https://maker.ifttt.com/trigger/{event}/with/key/{my_key}?name1=Alex&name2=Helen

But IFTTT doesn't see my data. it says that it can see data in attached JSON but I can't use JSON.

So is there any way to pass my data to IFTT in a query string or shell I forgot IFTTT and investigate how to connect directly to Google Sheet?

Answer

silvamerica picture silvamerica · Aug 4, 2017

IFTTT Maker webhooks can only take data with keys of "value1", "value2", and "value3". Try sending it with:

https://maker.ifttt.com/trigger/{event}/with/key/{my_key}?value1=Alex&value2=Helen