Skip to content

Webhook destination

Adding a webhook destination to Powersave allows you to send data to any URL. In practice this allows you to trigger Webhook workflows in platform like Zapier or Make.

Zapier and Make and other integrate with thousands of different platforms so this is the way to go, if you want to send data to a custom place, besides Airtable.

Technical users can also send data to their own custom web servers.

URL

Here you need to paste the URL of the webhook. As you set up a new workflow in Airtable and other platforms - that special URL will be given to you. Sending data there will effectively trigger the workflow / automation.

Request method

Most platforms require this method to be POST. But for advanced cases you might set up different methods here like PUT or PATCH perhaps if you're sending data to a specific platform directly.

Headers

In most cases no headers are required to be set. But if you're sending data to specific API, you might take use of setting up an authorization header.

Fields

Powersave is opinionated in the way it uses Fields with webhooks. As you configure and fill your fields and hit Save, Powersave will construct a payload out of it and send it to the webhook URL. For Create one it might look like this:

json
{
  "Product Name": "Powersave",
  "Tags": ["Chrome Extension", "Automation", "Webhooks"]
}

It depends on the fields.

In case you're using the Create many tab, the individual "records" are scoped under data

json
{
  "data": [{
    "Product Name": "Powersave",
     "Tags": ["Chrome Extension", "Automation", "Webhooks"]
  }, {
     "Product Name": "Slack",
     "Tags": ["Messaging", "Teams", "Management"]
  }]
}