ex_airtable icon indicating copy to clipboard operation
ex_airtable copied to clipboard

Airtable API interface

Results 7 ex_airtable issues
Sort by recently updated
recently updated
newest added

Thanks for sharing this project and the great docs, articles etc. I'm currently running into an issue. Each time I create a record or records with ExAirtable.create/2 the table's cache...

Hi, I just noticed I was getting 404s when following the guide, doing module setup (base, api_key, name), and then retrieving a record like: MyTable.retrieve("rec12345") My clue was the "%2F"...

I deleted one record and received the error "INVALID_PERMISSIONS_OR_MODEL_NOT_FOUND". Upon checking the logs, I noticed an incorrect URL: `https://api.airtable.com/v0/appZkO0RzqhvyjaST/tblcTyI01gezyy3vp%2FrecVyXBs5F9m4vAGV`. There is a `%2F` between the table name and the record...

With the `uploadAttachment` API endpoint (quietly) introduced by Airtable in July 2024, ExAirtable's in-memory rate limiter is no longer suitable for large data processing without pre-throttling. You can include a...

There are two features I want on a new project from ExAirtable: faster deletes and smart upserts. The latter was introduced in the Airtable API in 2022, where the API...

I went looking for multiple-records deletes, rather than single record deletes, when I saw extensions being able to delete 50 records at a time. The Airtable API supports deleting 10...

According to its documentation, `Service.update/3` uses a PUT request when `:overwrite` is set to `true` in its Keyword list of options. This will "overwrite all values in the destination record...