Go to the Destinations overview page and click the Add destination button. Select Airtable and click Continue. You can then authenticate Hightouch to Airtable using an Airtable personal access token.
Once you've set up your Airtable destination and have a model to pull data from, you can set up your sync configuration to begin syncing data. Go to the Syncs overview page and click the Add sync button to begin. Then, select the relevant model and the Airtable destination you want to sync to.
Choose the Airtable base and table you want to sync to using the two drop-down lists.
Then select the mode for how to alter Airtable objects:
Insert: pushes new objects to Airtable. It doesn't update any objects.
Upsert: pushes new objects to Airtable and updates fields that change in your warehouse.
Update: updates particular fields on existing objects in Airtable. It doesn't add new objects.
If you are using Upsert or Update mode, you must select a record matching field.
You can match records from your source to your Airtable workspace by the table's primary key or any other unique fields in the table.
You can choose the field you would like to use from the dropdown.
You should match the record using a unique identifier with a string type, otherwise the sync may not update the intended records properly.
You can sync columns from your source to any of your Airtable properties. The Airtable API performs best-effort
automatic data conversion from string values. You can choose the field names from the drop-down lists.
This isn't recommended since it isn't as performant. In the Airtable destination it can also lead to duplicated records because, 1234 does not match "1234", for example.
If you need to sync the primary key column as a non-string value, use SQL aliasing in your model to create a new column specifically for syncing.
Hightouch provides complete visibility into the API calls made during each of your sync runs. We recommend reading our article on debugging tips and tricks to learn more.