Procedures
Automation procedures in the Airtable book.
Ensure that you have installed or connected the Airtable book and created a new playground before using these automation procedures.
to create a record in a (table)
Creates a new record in a table
Input Concepts
record data
A dictionary with the fields and values of the new record
json
Yes
(no default)
Output Concepts
Examples
Create a record in a table
get a table from the bug tracker base whose name is "Bugs"
use the above as the bugs table
>>>
the string is '{"Title": "New Bug found"}'
get the string as json
use the above as the new bug
>>>
create a record in the bugs table
the record data is the new bugto get some (base's tables)
Gets a list of all tables from a specific base
Input Concepts
Output Concepts
Examples
Get all tables from a base
get the base whose name is "Bug Tracker"
use the above as the bug tracker base
>>>
get the bug tracker base's tablesGet a single table from a base
get the base whose name is "Bug Tracker"
use the above as the bug tracker base
>>>
get a table from the bug tracker base whose name is "Bugs"to get some (bases)
Gets a list of all bases
This procedure can get a list of all bases, as well as getting a single base filtering by its name or id.
Output Concepts
Examples
Get all bases
get some basesGet a single base by name
get a base whose name is "Bug Tracker"to get some (table's records)
Gets a list of all records from a specific table
Input Concepts
Output Concepts
Examples
Get all records from a table
get a table from the bug tracker base whose name is "Bugs"
use the above as the bugs table
>>>
get the records from the bugs tableGet a single record from a table
get a table from the bug tracker base whose name is "Bugs"
use the above as the bugs table
>>>
get the records from the bugs table whose Severity is "High"Last updated
Was this helpful?
