Hi @MauriceHolland
I think what you’ve mentioned is front-end scripting.
Zapier is mostly suited for back-end scripting between apps.
The answer to your question will depend on what app you are using for the trigger.
Some apps have available triggers/actions/searches via their Zap app integrations.
Example for Airtable: https://zapier.com/apps/airtable/integrations#triggers-and-actions
You can see the apps that integrate with Zapier here: https://zapier.com/apps
Hi Maurice,
Yes, you can receive HTTP requests (via Zapier Webhook) and even use the content of the body. Assuming you’re receiving a JSON. The fields from the JSON can be mapped e.g. to subsequent tasks e.g. Airtable. So you do a lookup in Airtable for a specifc record that matches your criteria.
Now here is the tricky part. Each tasks basically works own its own. The connection to the incoming HTTP request is gone as soon as the first task (webhook) is done. So as far as I know there is no way to return a response within the same call. You could of course send another (independent) HTTP post to any REST service as a subsequent task on its own.
Hope this makes sense to you.