Skip to main content

Setting up Airtable

Airtable connected!
Now you can use Airtable in any Application, Workflow, or Scheduled Job.

Use Airtable in APIs

Once your Airtable integration is created, you can start calling Airtable actions in Superblocks APIs. Airtable actions are REST requests. To learn more about REST requests in Superblocks, see the Building REST requests guide.

Supported actions

Example usage

Airtable’s API returns embedded fields for each record. To flatten the response so each field is a top level key to be used as a table column header in Superblocks, add the following JavaScript step after a call to List records:
return <AIRTABLE_STEP_NAME>.output.records.map(item => item.fields);

Generic HTTP Request

Every SaaS integration in Superblocks comes with a built in Generic HTTP Request Action. This is a powerful action you can use to call Airtable API endpoints not in the Superblocks supported actions.

To use this action simply add the method, path, required query parameters, and body for the desired endpoint.

Learn more about REST requests in Superblocks in our Building REST requests guide.

Generic HTTP Requests use the authentication set up and base URL you’ve configured for your integration, making it an easy for your team to extend Superblocks Integrations to meet their needs.