Skip to main content

Incoming webhooks for automations ✨


Show first post

52 replies

Forum|alt.badge.img+19
  • Inspiring
  • 3264 replies
  • March 17, 2021
kuovonne wrote:

Yeah, there is a lot that Airtable doesn’t do that people would like. I prefer to see the glass as half full, especially as a month ago there wasn’t even a glass on the table.


Okay, you are being polite and funny.

I’m being cranky because this is a simple concept - anticipate what other platforms are likely to do and accommodate such common and probable variants.


Forum|alt.badge.img+17

This is great! I just realized this week :grinning_face_with_sweat:


Forum|alt.badge.img+2
  • New Participant
  • 1 reply
  • April 10, 2021

Seconding the request for nodes selection in nested objects


Seconding the request to access the full payload (body) instead of just its children. This way we can handle any scenario through the script, including single records, arrays, etc.

In my case I want to do some minimal processing on payload arrival, but also JSON.stringify(body) and store it in a text column so I can do more processing based on other included data at a later date. One benefit of this is it allows me to add / change fields in the tools sending the payloads without having to immediately update the webhook-triggered airtable script (or target data tables structures) to handle them.


Forum|alt.badge.img+18
  • Inspiring
  • 366 replies
  • April 21, 2021

Crossing my fingers for an outgoing equivalent… Would save an awful lot of polling.


  • New Participant
  • 2 replies
  • April 29, 2021

I’m with Andrew – getting the entire payload body will enable us to process it with a script.

This would be a relatively small fix with a big impact.


Forum|alt.badge.img+20
  • Author
  • Inspiring
  • 375 replies
  • May 5, 2021

Hi everyone, I wanted to share that we now support application/x-www-form-urlencoded payloads.


Forum|alt.badge.img+11
  • Inspiring
  • 18 replies
  • May 7, 2021
Jason11 wrote:

Hi everyone, I wanted to share that we now support application/x-www-form-urlencoded payloads.


Hi @Jason , are there plans for record webhooks that are separate from automations? That I’m limited by the automations quota is a big limiting factor


kuovonne
Forum|alt.badge.img+27
  • Brainy
  • 6002 replies
  • May 7, 2021
Jason11 wrote:

Hi everyone, I wanted to share that we now support application/x-www-form-urlencoded payloads.


@Jason Any chance of incoming webhooks supporting GETwith url parameters?


Forum|alt.badge.img+20
  • Author
  • Inspiring
  • 375 replies
  • May 7, 2021
kuovonne wrote:

@Jason Any chance of incoming webhooks supporting GETwith url parameters?


I’ll check with our team and let you know!


Forum|alt.badge.img+20
  • Author
  • Inspiring
  • 375 replies
  • May 7, 2021

@kuovonne It’s not something we have planned currently, but we are gathering feedback for the future if/when we build that out. If you have any unique context or applications for this to share I’m happy to pass it along to our developers :thumbs_up:


Forum|alt.badge.img+12
  • Known Participant
  • 24 replies
  • June 29, 2021

The support article leaves a lot to be desired. It explains how to test a webhook, but not how to actually apply it in an Airtable context.

Can I, for example, trigger an automation when a colleague clicks a URL in an email (with prefilled parameters)?


Justin_Barrett
Forum|alt.badge.img+20
Karl_L wrote:

The support article leaves a lot to be desired. It explains how to test a webhook, but not how to actually apply it in an Airtable context.

Can I, for example, trigger an automation when a colleague clicks a URL in an email (with prefilled parameters)?


Webhooks must be called via a script where you can control the request type. Unfortunately a plain URL won’t work because the webhook call must be a POST request. URLs that pass data in the URL itself are sent via a GET request. A quick test to confirm this theory returned a 404 error.


Forum|alt.badge.img+19
  • Inspiring
  • 3264 replies
  • July 10, 2021
Justin_Barrett wrote:

Webhooks must be called via a script where you can control the request type. Unfortunately a plain URL won’t work because the webhook call must be a POST request. URLs that pass data in the URL itself are sent via a GET request. A quick test to confirm this theory returned a 404 error.


The workaround - it should be pretty straightforward to create a proxy service that converts the GET into a POST. If asked I would build this in AutoCode or maybe Nginx.


  • New Participant
  • 4 replies
  • September 8, 2021

Seconding adding the ability to select a section of, or the entire JSON payload, to an input variable that a subsequent script action can process.

For my use case, there’s no way to anticipate exactly what a certain section of the payload will contain, so I can’t pull out individual fields & their values. I’ll need to be able to traverse the payload and figure out what I’m working with.


Forum|alt.badge.img+19
  • Inspiring
  • 3264 replies
  • September 8, 2021
Brian_Gumm1 wrote:

Seconding adding the ability to select a section of, or the entire JSON payload, to an input variable that a subsequent script action can process.

For my use case, there’s no way to anticipate exactly what a certain section of the payload will contain, so I can’t pull out individual fields & their values. I’ll need to be able to traverse the payload and figure out what I’m working with.


I think this is possible now - this screen shot shows the body received via a Tookan webhook where custom_fields is a collection of JSON objects that contain a variety fields. One need only map this into a variable in your script action using input.config() and away you go.


  • New Participant
  • 4 replies
  • September 8, 2021
Bill_French wrote:

I think this is possible now - this screen shot shows the body received via a Tookan webhook where custom_fields is a collection of JSON objects that contain a variety fields. One need only map this into a variable in your script action using input.config() and away you go.


When I click on a “collection”-like area of the JSON payload, I only get the “Continue >” link to traverse farther into the JSON payload, not the option to Insert it into the input.config() variable…


Forum|alt.badge.img+19
  • Inspiring
  • 3264 replies
  • September 8, 2021
Brian_Gumm1 wrote:

When I click on a “collection”-like area of the JSON payload, I only get the “Continue >” link to traverse farther into the JSON payload, not the option to Insert it into the input.config() variable…


Yes, that constraint still exists and it’s just dumb. At the very least a dot should give you the body.

Workaround…

Once the webhook is received, I tease out the id of the data source and then perform an immediate call back into the source of the webhook call, thus capturing the full body.


  • New Participant
  • 4 replies
  • September 8, 2021
Bill_French wrote:

Yes, that constraint still exists and it’s just dumb. At the very least a dot should give you the body.

Workaround…

Once the webhook is received, I tease out the id of the data source and then perform an immediate call back into the source of the webhook call, thus capturing the full body.


Hmmm…great little trick - I think it will work in my use case as well!

(But yes, still: Just pretty plz give us the ability to assign the payload to an input variable for crying out loud! :grinning_face_with_sweat: )


Forum|alt.badge.img+14
  • Inspiring
  • 28 replies
  • September 30, 2021

Seconding (read: bazillioning) the request for the ability to assigning the full json payload to a variable. Shouldn’t be that hard, right.


Forum|alt.badge.img+17

I opened Is it possible to read a webhook data from a script? thinking what I wanted to do was rather straightforward, but no, Airtable doesn’t cease to surprise me with their design that looks like it’s been thought-out by a 2 months intern.

Accessing the whole payload from a script seemed like such a common need for anything a bit dynamic, but not, that’s not even possible.

I’m gonna build my own webhook outside of AT, not worth wasting my time on this.


Forum|alt.badge.img+19
  • Inspiring
  • 3264 replies
  • November 4, 2021
Ambroise_Dhenai wrote:

I opened Is it possible to read a webhook data from a script? thinking what I wanted to do was rather straightforward, but no, Airtable doesn’t cease to surprise me with their design that looks like it’s been thought-out by a 2 months intern.

Accessing the whole payload from a script seemed like such a common need for anything a bit dynamic, but not, that’s not even possible.

I’m gonna build my own webhook outside of AT, not worth wasting my time on this.


LOL. I’ve said this repeatedly in very similar terms.


kuovonne wrote:

Ah. Thank you for explaining this. That makes a difference. I did point out initially that creating the JSON on whatever platform calls the webhook might be a pain.

Since you don’t have control over the payload, that makes things harder. If your objects are shallow and always have the same properties (like in your screen capture), you would have to resort to having input variables for each property and then manually reassembling the objects based on index. Not ideal, and it will still break if any property isn’t included, which you may also not have control over.


@kuovonne This was very helpful. I do have a question, however.

How would you handle this the values were null? Sometimes my payload inlcudes a fruit list and sometimes it doesn’t.


ScottWorld
Forum|alt.badge.img+33
  • Brainy
  • 8779 replies
  • April 3, 2022

Airtable’s incoming webhooks are currently very basic & limited.

For full control over incoming webhooks & incoming mailhooks (i.e. incoming email messages), no matter what format the data is coming in as — and then handling the incoming data in any way that you’d like — you would need to use a tool that gives you this sort of control.

The tool that I personally use for this with my Airtable clients is Make.com:

Make Webhooks

They also have full Airtable integration:

I’m sure there are many other tools out there that do the exact same thing and are probably even better than Make, but that is just the tool that I use and am familiar with, and it is considered a low-code tool.


kuovonne
Forum|alt.badge.img+27
  • Brainy
  • 6002 replies
  • April 3, 2022
Cameron_Mason1 wrote:

@kuovonne This was very helpful. I do have a question, however.

How would you handle this the values were null? Sometimes my payload inlcudes a fruit list and sometimes it doesn’t.


That is for the script to handle. It is common for null values to be omitted from a payload to reduce the amount of data transferred. If there is no fruit list in the payload, then there are no fruits in the list.


Reply