Snapchat Ads#
Connect Snapchat Ads with OAuth using your app credentials plus an ad account id. The source writes 5 fixed tables under titan.snapchat_ads.
select
id,
ad_account_id,
name
from titan.snapchat_ads.campaigns
limit 10Connect Snapchat Ads#
Open Apps, choose Connect app, and select Snapchat Ads.
Enter OAuth using your app credentials plus an ad account id.
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#
Campaign, ad squad, and ad entities sync beside their performance tables.
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#
campaigns#
titan.snapchat_ads.campaigns has 9 source columns.
Source field id.
Source field adAccountId.
Source field name.
Source field status.
Source field objective.
Source field startTime.
Source field endTime.
Source field createdAt.
Source field updatedAt.
ad_squads#
titan.snapchat_ads.ad_squads has 10 source columns.
Source field id.
Source field campaignId.
Source field name.
Source field status.
Source field type.
Source field bidMicro.
Source field dailyBudgetMicro.
Source field optimizationGoal.
Source field createdAt.
Source field updatedAt.
ads#
titan.snapchat_ads.ads has 7 source columns.
Source field id.
Source field adSquadId.
Source field name.
Source field status.
Source field type.
Source field createdAt.
Source field updatedAt.
campaign_stats#
titan.snapchat_ads.campaign_stats has 6 source columns.
Source field campaignId.
Source field startTime.
Source field impressions.
Source field swipes.
Source field spend.
Source field videoViews.
ad_squad_stats#
titan.snapchat_ads.ad_squad_stats has 6 source columns.
Source field adSquadId.
Source field startTime.
Source field impressions.
Source field swipes.
Source field spend.
Source field videoViews.
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.