SendGrid#
Connect SendGrid with an API key. The source writes 6 fixed tables under titan.sendgrid.
select
id,
email,
first_name
from titan.sendgrid.contacts
limit 10Connect SendGrid#
Open Apps, choose Connect app, and select SendGrid.
Enter an API key.
Review the tables, then save the source.
Watch Sync history until the first run completes.
Credentials are stored as secrets. They never become lake columns or appear in query results.
Sync behavior#
Contacts, lists, campaigns, email templates, suppressions, and global unsubscribes sync together.
A new source syncs when you connect it and then follows its schedule. The default recurring interval is 4 hours. An interrupted run keeps its completed progress and retries safely.
Every lake table also has the system columns _synced_at and _deleted; the column reference below lists source columns only.
Table reference#
contacts#
titan.sendgrid.contacts has 9 source columns.
Source field id.
Source field email.
Source field firstName.
Source field lastName.
Source field city.
Source field country.
Source field createdAt.
Source field updatedAt.
Source field customFields.
lists#
titan.sendgrid.lists has 5 source columns.
Source field id.
Source field name.
Source field contactCount.
Source field createdAt.
Source field updatedAt.
campaigns#
titan.sendgrid.campaigns has 6 source columns.
Source field id.
Source field name.
Source field status.
Source field sendAt.
Source field createdAt.
Source field updatedAt.
templates#
titan.sendgrid.templates has 4 source columns.
Source field id.
Source field name.
Source field generation.
Source field updatedAt.
suppressions#
titan.sendgrid.suppressions has 4 source columns.
Source field email.
Source field reason.
Source field status.
Source field createdAt.
global_unsubscribes#
titan.sendgrid.global_unsubscribes has 2 source columns.
Source field email.
Source field created.
Deletes and history#
Rows are merged by their source key. When the source can prove that a row was deleted, Supernova keeps the row and sets _deleted so queries can choose whether to include history. Filter current-state queries with where not _deleted.