Make a POST or GET web request to:
https://maker.ifttt.com/trigger/ * Note the extra /json/with/key/jeGIguKQqRUASEnx09BGRH-shvXP2yrvbqRPQ8ugxdC/json path element in this trigger.
With any JSON body. For example:
{ "this" : [ { "is": { "some": [ "test", "data" ] } } ] }
You can also try it with curl
from a command line.
Test
Please read our FAQ on using Webhooks for more info.
Make a POST or GET web request to:
https://maker.ifttt.com/trigger/ /with/key/jeGIguKQqRUASEnx09BGRH-shvXP2yrvbqRPQ8ugxdC
With an optional JSON body of:
{ "value1" : "", "value2" : "", "value3" : "" }
The data is completely optional, and you can also pass value1, value2, and value3 as query parameters or form variables. This content will be passed on to the action in your Applet.
You can also try it with curl
from a command line.
Test
Please read our FAQ on using Webhooks for more info.
You can query a publicly accessible HTTP endpoint using the Webhooks service.
The "Make a web request" query requires a URL and Method as query fields. The query optionally accepts a Content Type and Request Body as query fields.
The query will always provide the Status Code returned by the endpoint as an Ingredient.
In addition, if the endpoint returns JSON matching our expected format (shown below) we can parse the response and provide Value1, Value2, and Value3 ingredients from the response.
{ "value1" : "", "value2" : "", "value3" : "" }
Please read our FAQ on using Webhooks for more info.