Help

Delete multiple records with Make.com

420 3
cancel
Showing results for 
Search instead for 
Did you mean: 
Educ-Up
5 - Automation Enthusiast
5 - Automation Enthusiast

What is the exact way to delete multiple records on a table of Airtable with Make.com ?

EducUp_0-1709840178860.png

Thanks,

3 Replies 3

Are you performing a search first?

Make will always loop through all of the records that it finds for you, so you can just start with a "Search Records" module, and then put the "Delete Record" module afterwards.

Check out the screenshot below.

Make will automatically delete all of the records that it found.

Screenshot 2024-03-07 at 5.44.35 PM.png

Educ-Up
5 - Automation Enthusiast
5 - Automation Enthusiast

Thanks I know already it, but it consume more operations on Make.com

For example delete 200 records with this method cost 200 operations. If is grouped by 10 (this is the max for airtable) is will cost 20 operations.

The record IDs are URL params and don't go into the body I believe.  Here's the documentation and the relevant example:

curl -X DELETE "https://api.airtable.com/v0/{baseId}/{tableIdOrName}\
?records=rec560UJdUtocSouk&records=rec3lbPRG4aVqkeOQ" \
-H "Authorization: Bearer YOUR_TOKEN"