Save the date! Join us on October 16 for our Product Ops launch event. Register here.
Dec 21, 2020 06:13 AM
Our team uses Airtable to keep track of customer orders, and we’d like an automation that sends an email to the customer when our Airtable users make record edits that trigger certain events to happen (order placed, order confirmed, order out for delivery, order delivered, etc.). We want our emails to be HTML-formatted, so instaed of Airtable Automations, we are still using Zapier or Integromat, which trigger when the an order record enters a certain View. We are thus concerned about the Airtable API rate limit (5 requests per second) because we want to avoid a 429 error at all costs.
Our questions are:
Do services like Zapier and Integromat throttle Airtable API requests by default? If we were to say bulk-approve 100 or so orders on Airtable, will these services naturally throttle the emails to fit Airtable’s API rate limits as long as we are still within the Zap/Operation limits of Zapier/Integromat?
In the API documentation, the API team recommends using a “caching proxy.” What is a caching proxy and is it applicable in our situation? (I’m from the product side actually, so I’m not familiar with this concept).
I saw a post about Integromat’s Sleep tool being used to get around Webflow’s API limit (60/minute) – will Integromat’s Sleep Tool also work for Airtable’s API rate limit?
If we were to settle for Markdown-based emails, is there throttling on Airtable Automations by default? Or is there also a hard limit with risk of getting a 429 status code?
Having read about our use case, is there a “best-practice” way or clever workaround anyone can suggest to getting past the Airtable API rate limit?
Dec 21, 2020 07:36 AM
Welcome to the community, @Johnny_Polkadot! :grinning_face_with_big_eyes: I’m not familiar with all the things you’re asking about, but I can do my best on a few of them:
Dec 21, 2020 08:16 AM
Hey @Justin_Barrett Thank you for the warm welcome and quick answers!
1 & 5. I also suspect they must have something to address the limits of Airtable. I wonder if anyone else here has any experience “overloading” or testing the limits of their email integrations with Zapier/Integromat? Has anyone gotten a 429 from a bulky zap/operation? :slightly_smiling_face:
Dec 21, 2020 08:49 AM
What kinds of things would you like to do with HTML? There may be a way to do the same with markdown, although it’ll likely need to involve scripting. I do something like this with a custom messaging system that I built for a class that I teach. I compose my core message body in a long text field with markdown disabled, but I use markdown syntax in the message. When the automation triggers, a script action pulls that text, adds the recipient’s name at the head of the message and a generic “footer” at the end (also using markdown), then creates an output item used in the “Send an email” action, where Airtable processes the markdown before sending. It’s not quite as robust as HTML, and the resulting email still has the Airtable branding, but it works for my use case.