Creates a new ad account. Only type BUSINESS can be created via the API (ENTERPRISE accounts cannot). Requires the rw_ads OAuth scope. The new account ID is returned in the x-restli-id response header.
Partially updates an ad account using the Rest.li PARTIAL_UPDATE pattern: the body wraps the fields to change in patch.$set. Requires the rw_ads OAuth scope; most account fields require the ACCOUNT_BILLING_ADMIN role. To soft-delete a non-DRAFT account, set status to PENDING_DELETION here (billing admin only).
Hard-deletes an ad account. Only accounts in DRAFT status accept a true DELETE; for non-DRAFT accounts use the update operation to set status to PENDING_DELETION. Both forms require the ACCOUNT_BILLING_ADMIN role and the rw_ads OAuth scope.
Search and filter accounts records powered by Airbyte's data sync. This often provides additional fields and operators beyond what the API natively supports, making it easier to narrow down results before performing further operations. Only available in hosted mode.
Run a SQL query against accounts records in the Airbyte Context Store. SQL projections may return any set of columns, so each result row is a dictionary matching the query's selected fields. Only available in hosted mode.
Use the hosted server documentation to find the qualified Context Store table name and SQL guidance.
Partially updates an account user's role using the Rest.li PARTIAL_UPDATE pattern: the body wraps the fields to change in patch.$set (e.g. {"patch": {"$set": {"role": "CAMPAIGN_MANAGER"}}}). Pass the raw account and user URNs as parameters; they are URL-encoded automatically. Requires the rw_ads OAuth scope and the ACCOUNT_BILLING_ADMIN or ACCOUNT_MANAGER role.
Grants a user a role on an ad account. Note the non-standard Rest.li compound-key shape: this is a PUT (not POST) keyed by both the account and user URNs. Pass the raw URNs as parameters; they are URL-encoded automatically. Requires the rw_ads OAuth scope and the ACCOUNT_BILLING_ADMIN or ACCOUNT_MANAGER role.
Removes a user's role from an ad account. Pass the raw account and user URNs as parameters; they are URL-encoded automatically. Requires the rw_ads OAuth scope and the ACCOUNT_BILLING_ADMIN or ACCOUNT_MANAGER role.
Search and filter account users records powered by Airbyte's data sync. This often provides additional fields and operators beyond what the API natively supports, making it easier to narrow down results before performing further operations. Only available in hosted mode.
Run a SQL query against account users records in the Airbyte Context Store. SQL projections may return any set of columns, so each result row is a dictionary matching the query's selected fields. Only available in hosted mode.
Use the hosted server documentation to find the qualified Context Store table name and SQL guidance.
Creates a new campaign in the ad account. Requires the rw_ads OAuth scope and an ad-account role of CAMPAIGN_MANAGER or higher (VIEWER is read-only). The new campaign ID is returned in the x-restli-id response header. Commonly required fields beyond account and name include type, costType, unitCost or dailyBudget, locale, and targetingCriteria; LinkedIn returns a descriptive 400 when a required field is missing.
Partially updates a campaign using the Rest.li PARTIAL_UPDATE pattern: the body wraps the fields to change in patch.$set. Requires the rw_ads OAuth scope and a CAMPAIGN_MANAGER or higher ad-account role. Note that $set on an array field (e.g. targetingCriteria lists) replaces the whole array, so re-send all existing elements. To soft-delete a non-DRAFT campaign, set status to PENDING_DELETION here.
Hard-deletes a campaign. Only campaigns in DRAFT status accept a true DELETE; for non-DRAFT campaigns LinkedIn requires a soft delete instead - use the update operation to set status to PENDING_DELETION. Requires the rw_ads OAuth scope and a CAMPAIGN_MANAGER or higher ad-account role.
Search and filter campaigns records powered by Airbyte's data sync. This often provides additional fields and operators beyond what the API natively supports, making it easier to narrow down results before performing further operations. Only available in hosted mode.
Run a SQL query against campaigns records in the Airbyte Context Store. SQL projections may return any set of columns, so each result row is a dictionary matching the query's selected fields. Only available in hosted mode.
Use the hosted server documentation to find the qualified Context Store table name and SQL guidance.
Creates a new campaign group in the ad account. Requires the rw_ads OAuth scope and a CAMPAIGN_MANAGER or higher ad-account role. The new campaign group ID is returned in the x-restli-id response header. runSchedule.start is required when creating with ACTIVE status.
Partially updates a campaign group using the Rest.li PARTIAL_UPDATE pattern: the body wraps the fields to change in patch.$set. Requires the rw_ads OAuth scope and a CAMPAIGN_MANAGER or higher ad-account role. $set on an array field replaces the whole array, so re-send all existing elements. To soft-delete a non-DRAFT campaign group, set status to PENDING_DELETION here.
Hard-deletes a campaign group. Only campaign groups in DRAFT status accept a true DELETE; for non-DRAFT campaign groups LinkedIn requires a soft delete instead - use the update operation to set status to PENDING_DELETION. Requires the rw_ads OAuth scope and a CAMPAIGN_MANAGER or higher ad-account role.
Search and filter campaign groups records powered by Airbyte's data sync. This often provides additional fields and operators beyond what the API natively supports, making it easier to narrow down results before performing further operations. Only available in hosted mode.
Run a SQL query against campaign groups records in the Airbyte Context Store. SQL projections may return any set of columns, so each result row is a dictionary matching the query's selected fields. Only available in hosted mode.
Use the hosted server documentation to find the qualified Context Store table name and SQL guidance.
Creates a new creative in the ad account. Requires the rw_ads OAuth scope and a CREATIVE_MANAGER or higher ad-account role. The new creative URN is returned in the x-restli-id response header. The creative's content must reference existing assets (e.g. a post URN in content.reference for sponsored content).
Campaign URN the creative belongs to, e.g. urn:li:sponsoredCampaign:123456
content
object
No
Creative content. For sponsored content, reference an existing post URN via content.reference; other formats (textAd, spotlight, jobs) use their own sub-objects per the LinkedIn Creatives API documentation.
Partially updates a creative using the Rest.li PARTIAL_UPDATE pattern: the body wraps the fields to change in patch.$set. Only a limited set of creative fields is mutable (e.g. intendedStatus, name, leadgenCallToAction). Requires the rw_ads OAuth scope and a CREATIVE_MANAGER or higher ad-account role. To soft-delete a non-draft creative, set intendedStatus to PENDING_DELETION here.
Hard-deletes a creative. Only creatives in DRAFT intendedStatus (or linked to a draft campaign, or with failed video uploads) accept a true DELETE; LinkedIn uniquely requires the X-RestLi-Method DELETE header on this call. For other creatives, soft-delete via the update operation by setting intendedStatus to PENDING_DELETION. Requires the rw_ads OAuth scope and a CREATIVE_MANAGER or higher ad-account role.
Search and filter creatives records powered by Airbyte's data sync. This often provides additional fields and operators beyond what the API natively supports, making it easier to narrow down results before performing further operations. Only available in hosted mode.
Run a SQL query against creatives records in the Airbyte Context Store. SQL projections may return any set of columns, so each result row is a dictionary matching the query's selected fields. Only available in hosted mode.
Use the hosted server documentation to find the qualified Context Store table name and SQL guidance.
Creates a new conversion tracking rule. Conversions API write access is gated behind a separate LinkedIn partner approval - the rw_conversions OAuth scope alone is not sufficient until access is granted. The new conversion ID is returned in the x-restli-id response header. Set autoAssociationType to ALL_CAMPAIGNS to associate the rule with every campaign in the account automatically.
Partially updates a conversion rule using the Rest.li PARTIAL_UPDATE pattern: the body wraps the fields to change in patch.$set. The account query parameter is required. Conversion rules have no hard delete - to retire one, soft-disable it here with {"patch": {"$set": {"enabled": false}}}. Conversions API write access is gated behind a separate LinkedIn partner approval.
Search and filter conversions records powered by Airbyte's data sync. This often provides additional fields and operators beyond what the API natively supports, making it easier to narrow down results before performing further operations. Only available in hosted mode.
Run a SQL query against conversions records in the Airbyte Context Store. SQL projections may return any set of columns, so each result row is a dictionary matching the query's selected fields. Only available in hosted mode.
Use the hosted server documentation to find the qualified Context Store table name and SQL guidance.
Streams offline conversion events to LinkedIn (Conversions API event ingestion). This is a write-only Rest.li BATCH_CREATE: the body's elements array accepts up to 5,000 events per request. Each event references a conversion rule URN (urn:lla:llaPartnerConversion:{id}) and identifies the converting user by hashed email or other supported ID types. Conversions API access is gated behind a separate LinkedIn partner approval.
Creates a campaign-to-conversion association using the Rest.li compound-key PUT pattern. Pass the raw campaign URN (urn:li:sponsoredCampaign:{id}) and conversion URN (urn:lla:llaPartnerConversion:{id}); they are URL-encoded automatically. Conversions API access is gated behind a separate LinkedIn partner approval.
Deletes a campaign-to-conversion association by its compound key. Pass the raw campaign and conversion URNs; they are URL-encoded automatically. Conversions API access is gated behind a separate LinkedIn partner approval.
Returns ad analytics data pivoted by campaign. Provides performance metrics including clicks, impressions, spend, and engagement data grouped by campaign.
Search and filter ad campaign analytics records powered by Airbyte's data sync. This often provides additional fields and operators beyond what the API natively supports, making it easier to narrow down results before performing further operations. Only available in hosted mode.
Run a SQL query against ad campaign analytics records in the Airbyte Context Store. SQL projections may return any set of columns, so each result row is a dictionary matching the query's selected fields. Only available in hosted mode.
Use the hosted server documentation to find the qualified Context Store table name and SQL guidance.
Returns ad analytics data pivoted by creative. Provides performance metrics including clicks, impressions, spend, and engagement data grouped by creative.
Search and filter ad creative analytics records powered by Airbyte's data sync. This often provides additional fields and operators beyond what the API natively supports, making it easier to narrow down results before performing further operations. Only available in hosted mode.
Run a SQL query against ad creative analytics records in the Airbyte Context Store. SQL projections may return any set of columns, so each result row is a dictionary matching the query's selected fields. Only available in hosted mode.
Use the hosted server documentation to find the qualified Context Store table name and SQL guidance.
Returns ad analytics data pivoted by impression device type. Provides performance metrics including clicks, impressions, spend, and engagement data grouped by impression device type.
Ad Impression Device Analytics Context Store Search
Search and filter ad impression device analytics records powered by Airbyte's data sync. This often provides additional fields and operators beyond what the API natively supports, making it easier to narrow down results before performing further operations. Only available in hosted mode.
The number of clicks on interactive card elements.
cardImpressions
number
The number of times interactive cards were displayed.
clicks
number
Total number of clicks on the ad.
commentLikes
number
The count of likes on comments related to the ad.
comments
number
The number of comments on the ad.
companyPageClicks
number
Clicks on the company page associated with the ad.
conversionValueInLocalCurrency
number
Conversion value in the local currency.
costInLocalCurrency
number
Cost of ad campaign in the local currency.
costInUsd
number
Cost of ad campaign in USD.
documentCompletions
number
Number of completions for document views.
documentFirstQuartileCompletions
number
Completions for first quartile of document views.
documentMidpointCompletions
number
Completions for midpoint of document views.
documentThirdQuartileCompletions
number
Completions for third quartile of document views.
downloadClicks
number
Clicks on download links in the ad.
end_date
string
End date of the ad analytics data.
externalWebsiteConversions
number
Conversions that lead to external websites.
externalWebsitePostClickConversions
number
Post-click conversions on external websites.
externalWebsitePostViewConversions
number
Post-view conversions on external websites.
follows
number
Number of follows generated by the ad.
fullScreenPlays
number
Number of times videos were played in fullscreen mode.
impressions
number
Total number of times the ad was displayed.
jobApplications
number
Number of job applications initiated through the ad.
jobApplyClicks
number
Clicks on apply job button in the ad.
landingPageClicks
number
Clicks on the landing page associated with the ad.
leadGenerationMailContactInfoShares
number
Shares of contact information through lead generation.
leadGenerationMailInterestedClicks
number
Clicks on expressing interest through lead generation mail.
likes
number
Total likes received on the ad.
oneClickLeadFormOpens
number
Number of times lead forms were opened in one click.
oneClickLeads
number
Leads generated in one click.
opens
number
The number of times the ad was opened or expanded.
otherEngagements
number
Engagements other than clicks on the ad.
pivotValues
array
Values used for pivoting the analytics.
string_of_pivot_values
string
Comma-separated string of pivot values for this analytics record
postClickJobApplications
number
Job applications initiated post-clicking on the ad.
postClickJobApplyClicks
number
Clicks on apply job button post-clicking on the ad.
postClickRegistrations
number
Registrations completed post-clicking on the ad.
postViewJobApplications
number
Job applications initiated post-viewing the ad.
postViewJobApplyClicks
number
Clicks on apply job button post-viewing the ad.
postViewRegistrations
number
Registrations completed post-viewing the ad.
reactions
number
Total reactions (e.g., like, love, celebrate) on the ad.
registrations
number
Total registrations completed through the ad.
sends
number
Number of messages sent through the ad.
shares
number
Total shares generated by the ad.
start_date
string
Start date of the ad analytics data.
talentLeads
number
Number of leads related to talent acquisition.
textUrlClicks
number
Clicks on text URLs within the ad.
totalEngagements
number
Total number of engagements on the ad.
validWorkEmailLeads
number
Leads generated through valid work emails.
videoCompletions
number
Number of times videos were watched till completion.
videoFirstQuartileCompletions
number
Completions for first quartile of video views.
videoMidpointCompletions
number
Completions for midpoint of video views.
videoStarts
number
Total video starts initiated by users.
videoThirdQuartileCompletions
number
Completions for third quartile of video views.
videoViews
number
Total views of videos in the ad.
viralCardClicks
number
Clicks on interactive card components in viral distribution.
viralCardImpressions
number
Impressions of interactive cards in viral distribution.
viralClicks
number
Total clicks in viral distribution of the ad.
viralCommentLikes
number
Likes received on comments in viral distribution.
viralComments
number
Number of comments in viral distribution of the ad.
viralCompanyPageClicks
number
Clicks on the company page in viral distribution.
viralDocumentCompletions
number
Complete views of documents in viral distribution.
viralDocumentFirstQuartileCompletions
number
First quartile completions of documents in viral distribution.
viralDocumentMidpointCompletions
number
Midpoint completions of documents in viral distribution.
viralDocumentThirdQuartileCompletions
number
Third quartile completions of documents in viral distribution.
viralDownloadClicks
number
Clicks on downloads in viral distribution of the ad.
viralExternalWebsiteConversions
number
External website conversions in viral distribution.
viralExternalWebsitePostClickConversions
number
Post-click conversions on external websites in viral distribution.
viralExternalWebsitePostViewConversions
number
Post-view conversions on external websites in viral distribution.
viralFollows
number
Follows generated in viral distribution of the ad.
viralFullScreenPlays
number
Fullscreen video plays in viral distribution.
viralImpressions
number
Total impressions in viral distribution of the ad.
viralJobApplications
number
Job applications initiated in viral distribution.
viralJobApplyClicks
number
Clicks on apply job button in viral distribution of the ad.
viralLandingPageClicks
number
Clicks on landing page in viral distribution.
viralLikes
number
Total likes in viral distribution of the ad.
viralOneClickLeadFormOpens
number
One-click lead form opens in viral distribution.
viralOneClickLeads
number
Leads generated in one click in viral distribution.
viralOtherEngagements
number
Other engagements in viral distribution of the ad.
viralPostClickJobApplications
number
Job applications initiated post-clicking in viral distribution.
viralPostClickJobApplyClicks
number
Clicks on apply job button post-clicking in viral distribution.
viralPostClickRegistrations
number
Registrations completed post-clicking in viral distribution.
viralPostViewJobApplications
number
Job applications initiated post-viewing in viral distribution.
viralPostViewJobApplyClicks
number
Clicks on apply job button post-viewing in viral distribution.
viralPostViewRegistrations
number
Registrations completed post-viewing in viral distribution.
viralReactions
number
Total reactions in viral distribution of the ad.
viralRegistrations
number
Total registrations in viral distribution of the ad.
viralShares
number
Total shares in viral distribution of the ad.
viralTotalEngagements
number
Total engagements in viral distribution of the ad.
viralVideoCompletions
number
Completions of videos in viral distribution.
viralVideoFirstQuartileCompletions
number
First quartile completions of videos in viral distribution.
viralVideoMidpointCompletions
number
Midpoint completions of videos in viral distribution.
viralVideoStarts
number
Total video starts in viral distribution of the ad.
viralVideoThirdQuartileCompletions
number
Third quartile completions of videos in viral distribution.
viralVideoViews
number
Total views of videos in viral distribution of the ad.
pivot
string
Pivot dimension used for this analytics record
sponsoredCampaign
string
URN of the sponsored campaign this analytics record belongs to
Response Schema
Field Name
Type
Description
data
array
List of matching records
meta
object
Pagination metadata
meta.has_more
boolean
Whether additional pages are available
meta.cursor
string | null
Cursor for next page of results
meta.took_ms
number | null
Query execution time in milliseconds
data[].actionClicks
number
The number of clicks on action buttons in the ad.
data[].adUnitClicks
number
The number of clicks on ad unit components.
data[].approximateMemberReach
number
An approximation of unique ad impressions.
data[].cardClicks
number
The number of clicks on interactive card elements.
data[].cardImpressions
number
The number of times interactive cards were displayed.
data[].clicks
number
Total number of clicks on the ad.
data[].commentLikes
number
The count of likes on comments related to the ad.
data[].comments
number
The number of comments on the ad.
data[].companyPageClicks
number
Clicks on the company page associated with the ad.
data[].conversionValueInLocalCurrency
number
Conversion value in the local currency.
data[].costInLocalCurrency
number
Cost of ad campaign in the local currency.
data[].costInUsd
number
Cost of ad campaign in USD.
data[].documentCompletions
number
Number of completions for document views.
data[].documentFirstQuartileCompletions
number
Completions for first quartile of document views.
data[].documentMidpointCompletions
number
Completions for midpoint of document views.
data[].documentThirdQuartileCompletions
number
Completions for third quartile of document views.
data[].downloadClicks
number
Clicks on download links in the ad.
data[].end_date
string
End date of the ad analytics data.
data[].externalWebsiteConversions
number
Conversions that lead to external websites.
data[].externalWebsitePostClickConversions
number
Post-click conversions on external websites.
data[].externalWebsitePostViewConversions
number
Post-view conversions on external websites.
data[].follows
number
Number of follows generated by the ad.
data[].fullScreenPlays
number
Number of times videos were played in fullscreen mode.
data[].impressions
number
Total number of times the ad was displayed.
data[].jobApplications
number
Number of job applications initiated through the ad.
data[].jobApplyClicks
number
Clicks on apply job button in the ad.
data[].landingPageClicks
number
Clicks on the landing page associated with the ad.
data[].leadGenerationMailContactInfoShares
number
Shares of contact information through lead generation.
data[].leadGenerationMailInterestedClicks
number
Clicks on expressing interest through lead generation mail.
data[].likes
number
Total likes received on the ad.
data[].oneClickLeadFormOpens
number
Number of times lead forms were opened in one click.
data[].oneClickLeads
number
Leads generated in one click.
data[].opens
number
The number of times the ad was opened or expanded.
data[].otherEngagements
number
Engagements other than clicks on the ad.
data[].pivotValues
array
Values used for pivoting the analytics.
data[].string_of_pivot_values
string
Comma-separated string of pivot values for this analytics record
data[].postClickJobApplications
number
Job applications initiated post-clicking on the ad.
data[].postClickJobApplyClicks
number
Clicks on apply job button post-clicking on the ad.
data[].postClickRegistrations
number
Registrations completed post-clicking on the ad.
data[].postViewJobApplications
number
Job applications initiated post-viewing the ad.
data[].postViewJobApplyClicks
number
Clicks on apply job button post-viewing the ad.
data[].postViewRegistrations
number
Registrations completed post-viewing the ad.
data[].reactions
number
Total reactions (e.g., like, love, celebrate) on the ad.
data[].registrations
number
Total registrations completed through the ad.
data[].sends
number
Number of messages sent through the ad.
data[].shares
number
Total shares generated by the ad.
data[].start_date
string
Start date of the ad analytics data.
data[].talentLeads
number
Number of leads related to talent acquisition.
data[].textUrlClicks
number
Clicks on text URLs within the ad.
data[].totalEngagements
number
Total number of engagements on the ad.
data[].validWorkEmailLeads
number
Leads generated through valid work emails.
data[].videoCompletions
number
Number of times videos were watched till completion.
data[].videoFirstQuartileCompletions
number
Completions for first quartile of video views.
data[].videoMidpointCompletions
number
Completions for midpoint of video views.
data[].videoStarts
number
Total video starts initiated by users.
data[].videoThirdQuartileCompletions
number
Completions for third quartile of video views.
data[].videoViews
number
Total views of videos in the ad.
data[].viralCardClicks
number
Clicks on interactive card components in viral distribution.
data[].viralCardImpressions
number
Impressions of interactive cards in viral distribution.
data[].viralClicks
number
Total clicks in viral distribution of the ad.
data[].viralCommentLikes
number
Likes received on comments in viral distribution.
data[].viralComments
number
Number of comments in viral distribution of the ad.
data[].viralCompanyPageClicks
number
Clicks on the company page in viral distribution.
data[].viralDocumentCompletions
number
Complete views of documents in viral distribution.
data[].viralDocumentFirstQuartileCompletions
number
First quartile completions of documents in viral distribution.
data[].viralDocumentMidpointCompletions
number
Midpoint completions of documents in viral distribution.
data[].viralDocumentThirdQuartileCompletions
number
Third quartile completions of documents in viral distribution.
data[].viralDownloadClicks
number
Clicks on downloads in viral distribution of the ad.
data[].viralExternalWebsiteConversions
number
External website conversions in viral distribution.
data[].viralExternalWebsitePostClickConversions
number
Post-click conversions on external websites in viral distribution.
data[].viralExternalWebsitePostViewConversions
number
Post-view conversions on external websites in viral distribution.
data[].viralFollows
number
Follows generated in viral distribution of the ad.
data[].viralFullScreenPlays
number
Fullscreen video plays in viral distribution.
data[].viralImpressions
number
Total impressions in viral distribution of the ad.
data[].viralJobApplications
number
Job applications initiated in viral distribution.
data[].viralJobApplyClicks
number
Clicks on apply job button in viral distribution of the ad.
data[].viralLandingPageClicks
number
Clicks on landing page in viral distribution.
data[].viralLikes
number
Total likes in viral distribution of the ad.
data[].viralOneClickLeadFormOpens
number
One-click lead form opens in viral distribution.
data[].viralOneClickLeads
number
Leads generated in one click in viral distribution.
data[].viralOtherEngagements
number
Other engagements in viral distribution of the ad.
data[].viralPostClickJobApplications
number
Job applications initiated post-clicking in viral distribution.
data[].viralPostClickJobApplyClicks
number
Clicks on apply job button post-clicking in viral distribution.
data[].viralPostClickRegistrations
number
Registrations completed post-clicking in viral distribution.
data[].viralPostViewJobApplications
number
Job applications initiated post-viewing in viral distribution.
data[].viralPostViewJobApplyClicks
number
Clicks on apply job button post-viewing in viral distribution.
data[].viralPostViewRegistrations
number
Registrations completed post-viewing in viral distribution.
data[].viralReactions
number
Total reactions in viral distribution of the ad.
data[].viralRegistrations
number
Total registrations in viral distribution of the ad.
data[].viralShares
number
Total shares in viral distribution of the ad.
data[].viralTotalEngagements
number
Total engagements in viral distribution of the ad.
data[].viralVideoCompletions
number
Completions of videos in viral distribution.
data[].viralVideoFirstQuartileCompletions
number
First quartile completions of videos in viral distribution.
data[].viralVideoMidpointCompletions
number
Midpoint completions of videos in viral distribution.
data[].viralVideoStarts
number
Total video starts in viral distribution of the ad.
data[].viralVideoThirdQuartileCompletions
number
Third quartile completions of videos in viral distribution.
data[].viralVideoViews
number
Total views of videos in viral distribution of the ad.
data[].pivot
string
Pivot dimension used for this analytics record
data[].sponsoredCampaign
string
URN of the sponsored campaign this analytics record belongs to
Ad Impression Device Analytics Context Store SQL Query
Run a SQL query against ad impression device analytics records in the Airbyte Context Store. SQL projections may return any set of columns, so each result row is a dictionary matching the query's selected fields. Only available in hosted mode.
Use the hosted server documentation to find the qualified Context Store table name and SQL guidance.
Returns ad analytics data pivoted by member company. Provides performance metrics including clicks, impressions, spend, and engagement data grouped by member company.
Search and filter ad member company analytics records powered by Airbyte's data sync. This often provides additional fields and operators beyond what the API natively supports, making it easier to narrow down results before performing further operations. Only available in hosted mode.
The number of clicks on interactive card elements.
cardImpressions
number
The number of times interactive cards were displayed.
clicks
number
Total number of clicks on the ad.
commentLikes
number
The count of likes on comments related to the ad.
comments
number
The number of comments on the ad.
companyPageClicks
number
Clicks on the company page associated with the ad.
conversionValueInLocalCurrency
number
Conversion value in the local currency.
costInLocalCurrency
number
Cost of ad campaign in the local currency.
costInUsd
number
Cost of ad campaign in USD.
documentCompletions
number
Number of completions for document views.
documentFirstQuartileCompletions
number
Completions for first quartile of document views.
documentMidpointCompletions
number
Completions for midpoint of document views.
documentThirdQuartileCompletions
number
Completions for third quartile of document views.
downloadClicks
number
Clicks on download links in the ad.
end_date
string
End date of the ad analytics data.
externalWebsiteConversions
number
Conversions that lead to external websites.
externalWebsitePostClickConversions
number
Post-click conversions on external websites.
externalWebsitePostViewConversions
number
Post-view conversions on external websites.
follows
number
Number of follows generated by the ad.
fullScreenPlays
number
Number of times videos were played in fullscreen mode.
impressions
number
Total number of times the ad was displayed.
jobApplications
number
Number of job applications initiated through the ad.
jobApplyClicks
number
Clicks on apply job button in the ad.
landingPageClicks
number
Clicks on the landing page associated with the ad.
leadGenerationMailContactInfoShares
number
Shares of contact information through lead generation.
leadGenerationMailInterestedClicks
number
Clicks on expressing interest through lead generation mail.
likes
number
Total likes received on the ad.
oneClickLeadFormOpens
number
Number of times lead forms were opened in one click.
oneClickLeads
number
Leads generated in one click.
opens
number
The number of times the ad was opened or expanded.
otherEngagements
number
Engagements other than clicks on the ad.
pivotValues
array
Values used for pivoting the analytics.
string_of_pivot_values
string
Comma-separated string of pivot values for this analytics record
postClickJobApplications
number
Job applications initiated post-clicking on the ad.
postClickJobApplyClicks
number
Clicks on apply job button post-clicking on the ad.
postClickRegistrations
number
Registrations completed post-clicking on the ad.
postViewJobApplications
number
Job applications initiated post-viewing the ad.
postViewJobApplyClicks
number
Clicks on apply job button post-viewing the ad.
postViewRegistrations
number
Registrations completed post-viewing the ad.
reactions
number
Total reactions (e.g., like, love, celebrate) on the ad.
registrations
number
Total registrations completed through the ad.
sends
number
Number of messages sent through the ad.
shares
number
Total shares generated by the ad.
start_date
string
Start date of the ad analytics data.
talentLeads
number
Number of leads related to talent acquisition.
textUrlClicks
number
Clicks on text URLs within the ad.
totalEngagements
number
Total number of engagements on the ad.
validWorkEmailLeads
number
Leads generated through valid work emails.
videoCompletions
number
Number of times videos were watched till completion.
videoFirstQuartileCompletions
number
Completions for first quartile of video views.
videoMidpointCompletions
number
Completions for midpoint of video views.
videoStarts
number
Total video starts initiated by users.
videoThirdQuartileCompletions
number
Completions for third quartile of video views.
videoViews
number
Total views of videos in the ad.
viralCardClicks
number
Clicks on interactive card components in viral distribution.
viralCardImpressions
number
Impressions of interactive cards in viral distribution.
viralClicks
number
Total clicks in viral distribution of the ad.
viralCommentLikes
number
Likes received on comments in viral distribution.
viralComments
number
Number of comments in viral distribution of the ad.
viralCompanyPageClicks
number
Clicks on the company page in viral distribution.
viralDocumentCompletions
number
Complete views of documents in viral distribution.
viralDocumentFirstQuartileCompletions
number
First quartile completions of documents in viral distribution.
viralDocumentMidpointCompletions
number
Midpoint completions of documents in viral distribution.
viralDocumentThirdQuartileCompletions
number
Third quartile completions of documents in viral distribution.
viralDownloadClicks
number
Clicks on downloads in viral distribution of the ad.
viralExternalWebsiteConversions
number
External website conversions in viral distribution.
viralExternalWebsitePostClickConversions
number
Post-click conversions on external websites in viral distribution.
viralExternalWebsitePostViewConversions
number
Post-view conversions on external websites in viral distribution.
viralFollows
number
Follows generated in viral distribution of the ad.
viralFullScreenPlays
number
Fullscreen video plays in viral distribution.
viralImpressions
number
Total impressions in viral distribution of the ad.
viralJobApplications
number
Job applications initiated in viral distribution.
viralJobApplyClicks
number
Clicks on apply job button in viral distribution of the ad.
viralLandingPageClicks
number
Clicks on landing page in viral distribution.
viralLikes
number
Total likes in viral distribution of the ad.
viralOneClickLeadFormOpens
number
One-click lead form opens in viral distribution.
viralOneClickLeads
number
Leads generated in one click in viral distribution.
viralOtherEngagements
number
Other engagements in viral distribution of the ad.
viralPostClickJobApplications
number
Job applications initiated post-clicking in viral distribution.
viralPostClickJobApplyClicks
number
Clicks on apply job button post-clicking in viral distribution.
viralPostClickRegistrations
number
Registrations completed post-clicking in viral distribution.
viralPostViewJobApplications
number
Job applications initiated post-viewing in viral distribution.
viralPostViewJobApplyClicks
number
Clicks on apply job button post-viewing in viral distribution.
viralPostViewRegistrations
number
Registrations completed post-viewing in viral distribution.
viralReactions
number
Total reactions in viral distribution of the ad.
viralRegistrations
number
Total registrations in viral distribution of the ad.
viralShares
number
Total shares in viral distribution of the ad.
viralTotalEngagements
number
Total engagements in viral distribution of the ad.
viralVideoCompletions
number
Completions of videos in viral distribution.
viralVideoFirstQuartileCompletions
number
First quartile completions of videos in viral distribution.
viralVideoMidpointCompletions
number
Midpoint completions of videos in viral distribution.
viralVideoStarts
number
Total video starts in viral distribution of the ad.
viralVideoThirdQuartileCompletions
number
Third quartile completions of videos in viral distribution.
viralVideoViews
number
Total views of videos in viral distribution of the ad.
pivot
string
Pivot dimension used for this analytics record
sponsoredCampaign
string
URN of the sponsored campaign this analytics record belongs to
Response Schema
Field Name
Type
Description
data
array
List of matching records
meta
object
Pagination metadata
meta.has_more
boolean
Whether additional pages are available
meta.cursor
string | null
Cursor for next page of results
meta.took_ms
number | null
Query execution time in milliseconds
data[].actionClicks
number
The number of clicks on action buttons in the ad.
data[].adUnitClicks
number
The number of clicks on ad unit components.
data[].approximateMemberReach
number
An approximation of unique ad impressions.
data[].cardClicks
number
The number of clicks on interactive card elements.
data[].cardImpressions
number
The number of times interactive cards were displayed.
data[].clicks
number
Total number of clicks on the ad.
data[].commentLikes
number
The count of likes on comments related to the ad.
data[].comments
number
The number of comments on the ad.
data[].companyPageClicks
number
Clicks on the company page associated with the ad.
data[].conversionValueInLocalCurrency
number
Conversion value in the local currency.
data[].costInLocalCurrency
number
Cost of ad campaign in the local currency.
data[].costInUsd
number
Cost of ad campaign in USD.
data[].documentCompletions
number
Number of completions for document views.
data[].documentFirstQuartileCompletions
number
Completions for first quartile of document views.
data[].documentMidpointCompletions
number
Completions for midpoint of document views.
data[].documentThirdQuartileCompletions
number
Completions for third quartile of document views.
data[].downloadClicks
number
Clicks on download links in the ad.
data[].end_date
string
End date of the ad analytics data.
data[].externalWebsiteConversions
number
Conversions that lead to external websites.
data[].externalWebsitePostClickConversions
number
Post-click conversions on external websites.
data[].externalWebsitePostViewConversions
number
Post-view conversions on external websites.
data[].follows
number
Number of follows generated by the ad.
data[].fullScreenPlays
number
Number of times videos were played in fullscreen mode.
data[].impressions
number
Total number of times the ad was displayed.
data[].jobApplications
number
Number of job applications initiated through the ad.
data[].jobApplyClicks
number
Clicks on apply job button in the ad.
data[].landingPageClicks
number
Clicks on the landing page associated with the ad.
data[].leadGenerationMailContactInfoShares
number
Shares of contact information through lead generation.
data[].leadGenerationMailInterestedClicks
number
Clicks on expressing interest through lead generation mail.
data[].likes
number
Total likes received on the ad.
data[].oneClickLeadFormOpens
number
Number of times lead forms were opened in one click.
data[].oneClickLeads
number
Leads generated in one click.
data[].opens
number
The number of times the ad was opened or expanded.
data[].otherEngagements
number
Engagements other than clicks on the ad.
data[].pivotValues
array
Values used for pivoting the analytics.
data[].string_of_pivot_values
string
Comma-separated string of pivot values for this analytics record
data[].postClickJobApplications
number
Job applications initiated post-clicking on the ad.
data[].postClickJobApplyClicks
number
Clicks on apply job button post-clicking on the ad.
data[].postClickRegistrations
number
Registrations completed post-clicking on the ad.
data[].postViewJobApplications
number
Job applications initiated post-viewing the ad.
data[].postViewJobApplyClicks
number
Clicks on apply job button post-viewing the ad.
data[].postViewRegistrations
number
Registrations completed post-viewing the ad.
data[].reactions
number
Total reactions (e.g., like, love, celebrate) on the ad.
data[].registrations
number
Total registrations completed through the ad.
data[].sends
number
Number of messages sent through the ad.
data[].shares
number
Total shares generated by the ad.
data[].start_date
string
Start date of the ad analytics data.
data[].talentLeads
number
Number of leads related to talent acquisition.
data[].textUrlClicks
number
Clicks on text URLs within the ad.
data[].totalEngagements
number
Total number of engagements on the ad.
data[].validWorkEmailLeads
number
Leads generated through valid work emails.
data[].videoCompletions
number
Number of times videos were watched till completion.
data[].videoFirstQuartileCompletions
number
Completions for first quartile of video views.
data[].videoMidpointCompletions
number
Completions for midpoint of video views.
data[].videoStarts
number
Total video starts initiated by users.
data[].videoThirdQuartileCompletions
number
Completions for third quartile of video views.
data[].videoViews
number
Total views of videos in the ad.
data[].viralCardClicks
number
Clicks on interactive card components in viral distribution.
data[].viralCardImpressions
number
Impressions of interactive cards in viral distribution.
data[].viralClicks
number
Total clicks in viral distribution of the ad.
data[].viralCommentLikes
number
Likes received on comments in viral distribution.
data[].viralComments
number
Number of comments in viral distribution of the ad.
data[].viralCompanyPageClicks
number
Clicks on the company page in viral distribution.
data[].viralDocumentCompletions
number
Complete views of documents in viral distribution.
data[].viralDocumentFirstQuartileCompletions
number
First quartile completions of documents in viral distribution.
data[].viralDocumentMidpointCompletions
number
Midpoint completions of documents in viral distribution.
data[].viralDocumentThirdQuartileCompletions
number
Third quartile completions of documents in viral distribution.
data[].viralDownloadClicks
number
Clicks on downloads in viral distribution of the ad.
data[].viralExternalWebsiteConversions
number
External website conversions in viral distribution.
data[].viralExternalWebsitePostClickConversions
number
Post-click conversions on external websites in viral distribution.
data[].viralExternalWebsitePostViewConversions
number
Post-view conversions on external websites in viral distribution.
data[].viralFollows
number
Follows generated in viral distribution of the ad.
data[].viralFullScreenPlays
number
Fullscreen video plays in viral distribution.
data[].viralImpressions
number
Total impressions in viral distribution of the ad.
data[].viralJobApplications
number
Job applications initiated in viral distribution.
data[].viralJobApplyClicks
number
Clicks on apply job button in viral distribution of the ad.
data[].viralLandingPageClicks
number
Clicks on landing page in viral distribution.
data[].viralLikes
number
Total likes in viral distribution of the ad.
data[].viralOneClickLeadFormOpens
number
One-click lead form opens in viral distribution.
data[].viralOneClickLeads
number
Leads generated in one click in viral distribution.
data[].viralOtherEngagements
number
Other engagements in viral distribution of the ad.
data[].viralPostClickJobApplications
number
Job applications initiated post-clicking in viral distribution.
data[].viralPostClickJobApplyClicks
number
Clicks on apply job button post-clicking in viral distribution.
data[].viralPostClickRegistrations
number
Registrations completed post-clicking in viral distribution.
data[].viralPostViewJobApplications
number
Job applications initiated post-viewing in viral distribution.
data[].viralPostViewJobApplyClicks
number
Clicks on apply job button post-viewing in viral distribution.
data[].viralPostViewRegistrations
number
Registrations completed post-viewing in viral distribution.
data[].viralReactions
number
Total reactions in viral distribution of the ad.
data[].viralRegistrations
number
Total registrations in viral distribution of the ad.
data[].viralShares
number
Total shares in viral distribution of the ad.
data[].viralTotalEngagements
number
Total engagements in viral distribution of the ad.
data[].viralVideoCompletions
number
Completions of videos in viral distribution.
data[].viralVideoFirstQuartileCompletions
number
First quartile completions of videos in viral distribution.
data[].viralVideoMidpointCompletions
number
Midpoint completions of videos in viral distribution.
data[].viralVideoStarts
number
Total video starts in viral distribution of the ad.
data[].viralVideoThirdQuartileCompletions
number
Third quartile completions of videos in viral distribution.
data[].viralVideoViews
number
Total views of videos in viral distribution of the ad.
data[].pivot
string
Pivot dimension used for this analytics record
data[].sponsoredCampaign
string
URN of the sponsored campaign this analytics record belongs to
Ad Member Company Analytics Context Store SQL Query
Run a SQL query against ad member company analytics records in the Airbyte Context Store. SQL projections may return any set of columns, so each result row is a dictionary matching the query's selected fields. Only available in hosted mode.
Use the hosted server documentation to find the qualified Context Store table name and SQL guidance.
Returns ad analytics data pivoted by member company size. Provides performance metrics including clicks, impressions, spend, and engagement data grouped by member company size.
Ad Member Company Size Analytics Context Store Search
Search and filter ad member company size analytics records powered by Airbyte's data sync. This often provides additional fields and operators beyond what the API natively supports, making it easier to narrow down results before performing further operations. Only available in hosted mode.
The number of clicks on interactive card elements.
cardImpressions
number
The number of times interactive cards were displayed.
clicks
number
Total number of clicks on the ad.
commentLikes
number
The count of likes on comments related to the ad.
comments
number
The number of comments on the ad.
companyPageClicks
number
Clicks on the company page associated with the ad.
conversionValueInLocalCurrency
number
Conversion value in the local currency.
costInLocalCurrency
number
Cost of ad campaign in the local currency.
costInUsd
number
Cost of ad campaign in USD.
documentCompletions
number
Number of completions for document views.
documentFirstQuartileCompletions
number
Completions for first quartile of document views.
documentMidpointCompletions
number
Completions for midpoint of document views.
documentThirdQuartileCompletions
number
Completions for third quartile of document views.
downloadClicks
number
Clicks on download links in the ad.
end_date
string
End date of the ad analytics data.
externalWebsiteConversions
number
Conversions that lead to external websites.
externalWebsitePostClickConversions
number
Post-click conversions on external websites.
externalWebsitePostViewConversions
number
Post-view conversions on external websites.
follows
number
Number of follows generated by the ad.
fullScreenPlays
number
Number of times videos were played in fullscreen mode.
impressions
number
Total number of times the ad was displayed.
jobApplications
number
Number of job applications initiated through the ad.
jobApplyClicks
number
Clicks on apply job button in the ad.
landingPageClicks
number
Clicks on the landing page associated with the ad.
leadGenerationMailContactInfoShares
number
Shares of contact information through lead generation.
leadGenerationMailInterestedClicks
number
Clicks on expressing interest through lead generation mail.
likes
number
Total likes received on the ad.
oneClickLeadFormOpens
number
Number of times lead forms were opened in one click.
oneClickLeads
number
Leads generated in one click.
opens
number
The number of times the ad was opened or expanded.
otherEngagements
number
Engagements other than clicks on the ad.
pivotValues
array
Values used for pivoting the analytics.
string_of_pivot_values
string
Comma-separated string of pivot values for this analytics record
postClickJobApplications
number
Job applications initiated post-clicking on the ad.
postClickJobApplyClicks
number
Clicks on apply job button post-clicking on the ad.
postClickRegistrations
number
Registrations completed post-clicking on the ad.
postViewJobApplications
number
Job applications initiated post-viewing the ad.
postViewJobApplyClicks
number
Clicks on apply job button post-viewing the ad.
postViewRegistrations
number
Registrations completed post-viewing the ad.
reactions
number
Total reactions (e.g., like, love, celebrate) on the ad.
registrations
number
Total registrations completed through the ad.
sends
number
Number of messages sent through the ad.
shares
number
Total shares generated by the ad.
start_date
string
Start date of the ad analytics data.
talentLeads
number
Number of leads related to talent acquisition.
textUrlClicks
number
Clicks on text URLs within the ad.
totalEngagements
number
Total number of engagements on the ad.
validWorkEmailLeads
number
Leads generated through valid work emails.
videoCompletions
number
Number of times videos were watched till completion.
videoFirstQuartileCompletions
number
Completions for first quartile of video views.
videoMidpointCompletions
number
Completions for midpoint of video views.
videoStarts
number
Total video starts initiated by users.
videoThirdQuartileCompletions
number
Completions for third quartile of video views.
videoViews
number
Total views of videos in the ad.
viralCardClicks
number
Clicks on interactive card components in viral distribution.
viralCardImpressions
number
Impressions of interactive cards in viral distribution.
viralClicks
number
Total clicks in viral distribution of the ad.
viralCommentLikes
number
Likes received on comments in viral distribution.
viralComments
number
Number of comments in viral distribution of the ad.
viralCompanyPageClicks
number
Clicks on the company page in viral distribution.
viralDocumentCompletions
number
Complete views of documents in viral distribution.
viralDocumentFirstQuartileCompletions
number
First quartile completions of documents in viral distribution.
viralDocumentMidpointCompletions
number
Midpoint completions of documents in viral distribution.
viralDocumentThirdQuartileCompletions
number
Third quartile completions of documents in viral distribution.
viralDownloadClicks
number
Clicks on downloads in viral distribution of the ad.
viralExternalWebsiteConversions
number
External website conversions in viral distribution.
viralExternalWebsitePostClickConversions
number
Post-click conversions on external websites in viral distribution.
viralExternalWebsitePostViewConversions
number
Post-view conversions on external websites in viral distribution.
viralFollows
number
Follows generated in viral distribution of the ad.
viralFullScreenPlays
number
Fullscreen video plays in viral distribution.
viralImpressions
number
Total impressions in viral distribution of the ad.
viralJobApplications
number
Job applications initiated in viral distribution.
viralJobApplyClicks
number
Clicks on apply job button in viral distribution of the ad.
viralLandingPageClicks
number
Clicks on landing page in viral distribution.
viralLikes
number
Total likes in viral distribution of the ad.
viralOneClickLeadFormOpens
number
One-click lead form opens in viral distribution.
viralOneClickLeads
number
Leads generated in one click in viral distribution.
viralOtherEngagements
number
Other engagements in viral distribution of the ad.
viralPostClickJobApplications
number
Job applications initiated post-clicking in viral distribution.
viralPostClickJobApplyClicks
number
Clicks on apply job button post-clicking in viral distribution.
viralPostClickRegistrations
number
Registrations completed post-clicking in viral distribution.
viralPostViewJobApplications
number
Job applications initiated post-viewing in viral distribution.
viralPostViewJobApplyClicks
number
Clicks on apply job button post-viewing in viral distribution.
viralPostViewRegistrations
number
Registrations completed post-viewing in viral distribution.
viralReactions
number
Total reactions in viral distribution of the ad.
viralRegistrations
number
Total registrations in viral distribution of the ad.
viralShares
number
Total shares in viral distribution of the ad.
viralTotalEngagements
number
Total engagements in viral distribution of the ad.
viralVideoCompletions
number
Completions of videos in viral distribution.
viralVideoFirstQuartileCompletions
number
First quartile completions of videos in viral distribution.
viralVideoMidpointCompletions
number
Midpoint completions of videos in viral distribution.
viralVideoStarts
number
Total video starts in viral distribution of the ad.
viralVideoThirdQuartileCompletions
number
Third quartile completions of videos in viral distribution.
viralVideoViews
number
Total views of videos in viral distribution of the ad.
pivot
string
Pivot dimension used for this analytics record
sponsoredCampaign
string
URN of the sponsored campaign this analytics record belongs to
Response Schema
Field Name
Type
Description
data
array
List of matching records
meta
object
Pagination metadata
meta.has_more
boolean
Whether additional pages are available
meta.cursor
string | null
Cursor for next page of results
meta.took_ms
number | null
Query execution time in milliseconds
data[].actionClicks
number
The number of clicks on action buttons in the ad.
data[].adUnitClicks
number
The number of clicks on ad unit components.
data[].approximateMemberReach
number
An approximation of unique ad impressions.
data[].cardClicks
number
The number of clicks on interactive card elements.
data[].cardImpressions
number
The number of times interactive cards were displayed.
data[].clicks
number
Total number of clicks on the ad.
data[].commentLikes
number
The count of likes on comments related to the ad.
data[].comments
number
The number of comments on the ad.
data[].companyPageClicks
number
Clicks on the company page associated with the ad.
data[].conversionValueInLocalCurrency
number
Conversion value in the local currency.
data[].costInLocalCurrency
number
Cost of ad campaign in the local currency.
data[].costInUsd
number
Cost of ad campaign in USD.
data[].documentCompletions
number
Number of completions for document views.
data[].documentFirstQuartileCompletions
number
Completions for first quartile of document views.
data[].documentMidpointCompletions
number
Completions for midpoint of document views.
data[].documentThirdQuartileCompletions
number
Completions for third quartile of document views.
data[].downloadClicks
number
Clicks on download links in the ad.
data[].end_date
string
End date of the ad analytics data.
data[].externalWebsiteConversions
number
Conversions that lead to external websites.
data[].externalWebsitePostClickConversions
number
Post-click conversions on external websites.
data[].externalWebsitePostViewConversions
number
Post-view conversions on external websites.
data[].follows
number
Number of follows generated by the ad.
data[].fullScreenPlays
number
Number of times videos were played in fullscreen mode.
data[].impressions
number
Total number of times the ad was displayed.
data[].jobApplications
number
Number of job applications initiated through the ad.
data[].jobApplyClicks
number
Clicks on apply job button in the ad.
data[].landingPageClicks
number
Clicks on the landing page associated with the ad.
data[].leadGenerationMailContactInfoShares
number
Shares of contact information through lead generation.
data[].leadGenerationMailInterestedClicks
number
Clicks on expressing interest through lead generation mail.
data[].likes
number
Total likes received on the ad.
data[].oneClickLeadFormOpens
number
Number of times lead forms were opened in one click.
data[].oneClickLeads
number
Leads generated in one click.
data[].opens
number
The number of times the ad was opened or expanded.
data[].otherEngagements
number
Engagements other than clicks on the ad.
data[].pivotValues
array
Values used for pivoting the analytics.
data[].string_of_pivot_values
string
Comma-separated string of pivot values for this analytics record
data[].postClickJobApplications
number
Job applications initiated post-clicking on the ad.
data[].postClickJobApplyClicks
number
Clicks on apply job button post-clicking on the ad.
data[].postClickRegistrations
number
Registrations completed post-clicking on the ad.
data[].postViewJobApplications
number
Job applications initiated post-viewing the ad.
data[].postViewJobApplyClicks
number
Clicks on apply job button post-viewing the ad.
data[].postViewRegistrations
number
Registrations completed post-viewing the ad.
data[].reactions
number
Total reactions (e.g., like, love, celebrate) on the ad.
data[].registrations
number
Total registrations completed through the ad.
data[].sends
number
Number of messages sent through the ad.
data[].shares
number
Total shares generated by the ad.
data[].start_date
string
Start date of the ad analytics data.
data[].talentLeads
number
Number of leads related to talent acquisition.
data[].textUrlClicks
number
Clicks on text URLs within the ad.
data[].totalEngagements
number
Total number of engagements on the ad.
data[].validWorkEmailLeads
number
Leads generated through valid work emails.
data[].videoCompletions
number
Number of times videos were watched till completion.
data[].videoFirstQuartileCompletions
number
Completions for first quartile of video views.
data[].videoMidpointCompletions
number
Completions for midpoint of video views.
data[].videoStarts
number
Total video starts initiated by users.
data[].videoThirdQuartileCompletions
number
Completions for third quartile of video views.
data[].videoViews
number
Total views of videos in the ad.
data[].viralCardClicks
number
Clicks on interactive card components in viral distribution.
data[].viralCardImpressions
number
Impressions of interactive cards in viral distribution.
data[].viralClicks
number
Total clicks in viral distribution of the ad.
data[].viralCommentLikes
number
Likes received on comments in viral distribution.
data[].viralComments
number
Number of comments in viral distribution of the ad.
data[].viralCompanyPageClicks
number
Clicks on the company page in viral distribution.
data[].viralDocumentCompletions
number
Complete views of documents in viral distribution.
data[].viralDocumentFirstQuartileCompletions
number
First quartile completions of documents in viral distribution.
data[].viralDocumentMidpointCompletions
number
Midpoint completions of documents in viral distribution.
data[].viralDocumentThirdQuartileCompletions
number
Third quartile completions of documents in viral distribution.
data[].viralDownloadClicks
number
Clicks on downloads in viral distribution of the ad.
data[].viralExternalWebsiteConversions
number
External website conversions in viral distribution.
data[].viralExternalWebsitePostClickConversions
number
Post-click conversions on external websites in viral distribution.
data[].viralExternalWebsitePostViewConversions
number
Post-view conversions on external websites in viral distribution.
data[].viralFollows
number
Follows generated in viral distribution of the ad.
data[].viralFullScreenPlays
number
Fullscreen video plays in viral distribution.
data[].viralImpressions
number
Total impressions in viral distribution of the ad.
data[].viralJobApplications
number
Job applications initiated in viral distribution.
data[].viralJobApplyClicks
number
Clicks on apply job button in viral distribution of the ad.
data[].viralLandingPageClicks
number
Clicks on landing page in viral distribution.
data[].viralLikes
number
Total likes in viral distribution of the ad.
data[].viralOneClickLeadFormOpens
number
One-click lead form opens in viral distribution.
data[].viralOneClickLeads
number
Leads generated in one click in viral distribution.
data[].viralOtherEngagements
number
Other engagements in viral distribution of the ad.
data[].viralPostClickJobApplications
number
Job applications initiated post-clicking in viral distribution.
data[].viralPostClickJobApplyClicks
number
Clicks on apply job button post-clicking in viral distribution.
data[].viralPostClickRegistrations
number
Registrations completed post-clicking in viral distribution.
data[].viralPostViewJobApplications
number
Job applications initiated post-viewing in viral distribution.
data[].viralPostViewJobApplyClicks
number
Clicks on apply job button post-viewing in viral distribution.
data[].viralPostViewRegistrations
number
Registrations completed post-viewing in viral distribution.
data[].viralReactions
number
Total reactions in viral distribution of the ad.
data[].viralRegistrations
number
Total registrations in viral distribution of the ad.
data[].viralShares
number
Total shares in viral distribution of the ad.
data[].viralTotalEngagements
number
Total engagements in viral distribution of the ad.
data[].viralVideoCompletions
number
Completions of videos in viral distribution.
data[].viralVideoFirstQuartileCompletions
number
First quartile completions of videos in viral distribution.
data[].viralVideoMidpointCompletions
number
Midpoint completions of videos in viral distribution.
data[].viralVideoStarts
number
Total video starts in viral distribution of the ad.
data[].viralVideoThirdQuartileCompletions
number
Third quartile completions of videos in viral distribution.
data[].viralVideoViews
number
Total views of videos in viral distribution of the ad.
data[].pivot
string
Pivot dimension used for this analytics record
data[].sponsoredCampaign
string
URN of the sponsored campaign this analytics record belongs to
Ad Member Company Size Analytics Context Store SQL Query
Run a SQL query against ad member company size analytics records in the Airbyte Context Store. SQL projections may return any set of columns, so each result row is a dictionary matching the query's selected fields. Only available in hosted mode.
Use the hosted server documentation to find the qualified Context Store table name and SQL guidance.
Returns ad analytics data pivoted by member country. Provides performance metrics including clicks, impressions, spend, and engagement data grouped by member country.
Search and filter ad member country analytics records powered by Airbyte's data sync. This often provides additional fields and operators beyond what the API natively supports, making it easier to narrow down results before performing further operations. Only available in hosted mode.
The number of clicks on interactive card elements.
cardImpressions
number
The number of times interactive cards were displayed.
clicks
number
Total number of clicks on the ad.
commentLikes
number
The count of likes on comments related to the ad.
comments
number
The number of comments on the ad.
companyPageClicks
number
Clicks on the company page associated with the ad.
conversionValueInLocalCurrency
number
Conversion value in the local currency.
costInLocalCurrency
number
Cost of ad campaign in the local currency.
costInUsd
number
Cost of ad campaign in USD.
documentCompletions
number
Number of completions for document views.
documentFirstQuartileCompletions
number
Completions for first quartile of document views.
documentMidpointCompletions
number
Completions for midpoint of document views.
documentThirdQuartileCompletions
number
Completions for third quartile of document views.
downloadClicks
number
Clicks on download links in the ad.
end_date
string
End date of the ad analytics data.
externalWebsiteConversions
number
Conversions that lead to external websites.
externalWebsitePostClickConversions
number
Post-click conversions on external websites.
externalWebsitePostViewConversions
number
Post-view conversions on external websites.
follows
number
Number of follows generated by the ad.
fullScreenPlays
number
Number of times videos were played in fullscreen mode.
impressions
number
Total number of times the ad was displayed.
jobApplications
number
Number of job applications initiated through the ad.
jobApplyClicks
number
Clicks on apply job button in the ad.
landingPageClicks
number
Clicks on the landing page associated with the ad.
leadGenerationMailContactInfoShares
number
Shares of contact information through lead generation.
leadGenerationMailInterestedClicks
number
Clicks on expressing interest through lead generation mail.
likes
number
Total likes received on the ad.
oneClickLeadFormOpens
number
Number of times lead forms were opened in one click.
oneClickLeads
number
Leads generated in one click.
opens
number
The number of times the ad was opened or expanded.
otherEngagements
number
Engagements other than clicks on the ad.
pivotValues
array
Values used for pivoting the analytics.
string_of_pivot_values
string
Comma-separated string of pivot values for this analytics record
postClickJobApplications
number
Job applications initiated post-clicking on the ad.
postClickJobApplyClicks
number
Clicks on apply job button post-clicking on the ad.
postClickRegistrations
number
Registrations completed post-clicking on the ad.
postViewJobApplications
number
Job applications initiated post-viewing the ad.
postViewJobApplyClicks
number
Clicks on apply job button post-viewing the ad.
postViewRegistrations
number
Registrations completed post-viewing the ad.
reactions
number
Total reactions (e.g., like, love, celebrate) on the ad.
registrations
number
Total registrations completed through the ad.
sends
number
Number of messages sent through the ad.
shares
number
Total shares generated by the ad.
start_date
string
Start date of the ad analytics data.
talentLeads
number
Number of leads related to talent acquisition.
textUrlClicks
number
Clicks on text URLs within the ad.
totalEngagements
number
Total number of engagements on the ad.
validWorkEmailLeads
number
Leads generated through valid work emails.
videoCompletions
number
Number of times videos were watched till completion.
videoFirstQuartileCompletions
number
Completions for first quartile of video views.
videoMidpointCompletions
number
Completions for midpoint of video views.
videoStarts
number
Total video starts initiated by users.
videoThirdQuartileCompletions
number
Completions for third quartile of video views.
videoViews
number
Total views of videos in the ad.
viralCardClicks
number
Clicks on interactive card components in viral distribution.
viralCardImpressions
number
Impressions of interactive cards in viral distribution.
viralClicks
number
Total clicks in viral distribution of the ad.
viralCommentLikes
number
Likes received on comments in viral distribution.
viralComments
number
Number of comments in viral distribution of the ad.
viralCompanyPageClicks
number
Clicks on the company page in viral distribution.
viralDocumentCompletions
number
Complete views of documents in viral distribution.
viralDocumentFirstQuartileCompletions
number
First quartile completions of documents in viral distribution.
viralDocumentMidpointCompletions
number
Midpoint completions of documents in viral distribution.
viralDocumentThirdQuartileCompletions
number
Third quartile completions of documents in viral distribution.
viralDownloadClicks
number
Clicks on downloads in viral distribution of the ad.
viralExternalWebsiteConversions
number
External website conversions in viral distribution.
viralExternalWebsitePostClickConversions
number
Post-click conversions on external websites in viral distribution.
viralExternalWebsitePostViewConversions
number
Post-view conversions on external websites in viral distribution.
viralFollows
number
Follows generated in viral distribution of the ad.
viralFullScreenPlays
number
Fullscreen video plays in viral distribution.
viralImpressions
number
Total impressions in viral distribution of the ad.
viralJobApplications
number
Job applications initiated in viral distribution.
viralJobApplyClicks
number
Clicks on apply job button in viral distribution of the ad.
viralLandingPageClicks
number
Clicks on landing page in viral distribution.
viralLikes
number
Total likes in viral distribution of the ad.
viralOneClickLeadFormOpens
number
One-click lead form opens in viral distribution.
viralOneClickLeads
number
Leads generated in one click in viral distribution.
viralOtherEngagements
number
Other engagements in viral distribution of the ad.
viralPostClickJobApplications
number
Job applications initiated post-clicking in viral distribution.
viralPostClickJobApplyClicks
number
Clicks on apply job button post-clicking in viral distribution.
viralPostClickRegistrations
number
Registrations completed post-clicking in viral distribution.
viralPostViewJobApplications
number
Job applications initiated post-viewing in viral distribution.
viralPostViewJobApplyClicks
number
Clicks on apply job button post-viewing in viral distribution.
viralPostViewRegistrations
number
Registrations completed post-viewing in viral distribution.
viralReactions
number
Total reactions in viral distribution of the ad.
viralRegistrations
number
Total registrations in viral distribution of the ad.
viralShares
number
Total shares in viral distribution of the ad.
viralTotalEngagements
number
Total engagements in viral distribution of the ad.
viralVideoCompletions
number
Completions of videos in viral distribution.
viralVideoFirstQuartileCompletions
number
First quartile completions of videos in viral distribution.
viralVideoMidpointCompletions
number
Midpoint completions of videos in viral distribution.
viralVideoStarts
number
Total video starts in viral distribution of the ad.
viralVideoThirdQuartileCompletions
number
Third quartile completions of videos in viral distribution.
viralVideoViews
number
Total views of videos in viral distribution of the ad.
pivot
string
Pivot dimension used for this analytics record
sponsoredCampaign
string
URN of the sponsored campaign this analytics record belongs to
Response Schema
Field Name
Type
Description
data
array
List of matching records
meta
object
Pagination metadata
meta.has_more
boolean
Whether additional pages are available
meta.cursor
string | null
Cursor for next page of results
meta.took_ms
number | null
Query execution time in milliseconds
data[].actionClicks
number
The number of clicks on action buttons in the ad.
data[].adUnitClicks
number
The number of clicks on ad unit components.
data[].approximateMemberReach
number
An approximation of unique ad impressions.
data[].cardClicks
number
The number of clicks on interactive card elements.
data[].cardImpressions
number
The number of times interactive cards were displayed.
data[].clicks
number
Total number of clicks on the ad.
data[].commentLikes
number
The count of likes on comments related to the ad.
data[].comments
number
The number of comments on the ad.
data[].companyPageClicks
number
Clicks on the company page associated with the ad.
data[].conversionValueInLocalCurrency
number
Conversion value in the local currency.
data[].costInLocalCurrency
number
Cost of ad campaign in the local currency.
data[].costInUsd
number
Cost of ad campaign in USD.
data[].documentCompletions
number
Number of completions for document views.
data[].documentFirstQuartileCompletions
number
Completions for first quartile of document views.
data[].documentMidpointCompletions
number
Completions for midpoint of document views.
data[].documentThirdQuartileCompletions
number
Completions for third quartile of document views.
data[].downloadClicks
number
Clicks on download links in the ad.
data[].end_date
string
End date of the ad analytics data.
data[].externalWebsiteConversions
number
Conversions that lead to external websites.
data[].externalWebsitePostClickConversions
number
Post-click conversions on external websites.
data[].externalWebsitePostViewConversions
number
Post-view conversions on external websites.
data[].follows
number
Number of follows generated by the ad.
data[].fullScreenPlays
number
Number of times videos were played in fullscreen mode.
data[].impressions
number
Total number of times the ad was displayed.
data[].jobApplications
number
Number of job applications initiated through the ad.
data[].jobApplyClicks
number
Clicks on apply job button in the ad.
data[].landingPageClicks
number
Clicks on the landing page associated with the ad.
data[].leadGenerationMailContactInfoShares
number
Shares of contact information through lead generation.
data[].leadGenerationMailInterestedClicks
number
Clicks on expressing interest through lead generation mail.
data[].likes
number
Total likes received on the ad.
data[].oneClickLeadFormOpens
number
Number of times lead forms were opened in one click.
data[].oneClickLeads
number
Leads generated in one click.
data[].opens
number
The number of times the ad was opened or expanded.
data[].otherEngagements
number
Engagements other than clicks on the ad.
data[].pivotValues
array
Values used for pivoting the analytics.
data[].string_of_pivot_values
string
Comma-separated string of pivot values for this analytics record
data[].postClickJobApplications
number
Job applications initiated post-clicking on the ad.
data[].postClickJobApplyClicks
number
Clicks on apply job button post-clicking on the ad.
data[].postClickRegistrations
number
Registrations completed post-clicking on the ad.
data[].postViewJobApplications
number
Job applications initiated post-viewing the ad.
data[].postViewJobApplyClicks
number
Clicks on apply job button post-viewing the ad.
data[].postViewRegistrations
number
Registrations completed post-viewing the ad.
data[].reactions
number
Total reactions (e.g., like, love, celebrate) on the ad.
data[].registrations
number
Total registrations completed through the ad.
data[].sends
number
Number of messages sent through the ad.
data[].shares
number
Total shares generated by the ad.
data[].start_date
string
Start date of the ad analytics data.
data[].talentLeads
number
Number of leads related to talent acquisition.
data[].textUrlClicks
number
Clicks on text URLs within the ad.
data[].totalEngagements
number
Total number of engagements on the ad.
data[].validWorkEmailLeads
number
Leads generated through valid work emails.
data[].videoCompletions
number
Number of times videos were watched till completion.
data[].videoFirstQuartileCompletions
number
Completions for first quartile of video views.
data[].videoMidpointCompletions
number
Completions for midpoint of video views.
data[].videoStarts
number
Total video starts initiated by users.
data[].videoThirdQuartileCompletions
number
Completions for third quartile of video views.
data[].videoViews
number
Total views of videos in the ad.
data[].viralCardClicks
number
Clicks on interactive card components in viral distribution.
data[].viralCardImpressions
number
Impressions of interactive cards in viral distribution.
data[].viralClicks
number
Total clicks in viral distribution of the ad.
data[].viralCommentLikes
number
Likes received on comments in viral distribution.
data[].viralComments
number
Number of comments in viral distribution of the ad.
data[].viralCompanyPageClicks
number
Clicks on the company page in viral distribution.
data[].viralDocumentCompletions
number
Complete views of documents in viral distribution.
data[].viralDocumentFirstQuartileCompletions
number
First quartile completions of documents in viral distribution.
data[].viralDocumentMidpointCompletions
number
Midpoint completions of documents in viral distribution.
data[].viralDocumentThirdQuartileCompletions
number
Third quartile completions of documents in viral distribution.
data[].viralDownloadClicks
number
Clicks on downloads in viral distribution of the ad.
data[].viralExternalWebsiteConversions
number
External website conversions in viral distribution.
data[].viralExternalWebsitePostClickConversions
number
Post-click conversions on external websites in viral distribution.
data[].viralExternalWebsitePostViewConversions
number
Post-view conversions on external websites in viral distribution.
data[].viralFollows
number
Follows generated in viral distribution of the ad.
data[].viralFullScreenPlays
number
Fullscreen video plays in viral distribution.
data[].viralImpressions
number
Total impressions in viral distribution of the ad.
data[].viralJobApplications
number
Job applications initiated in viral distribution.
data[].viralJobApplyClicks
number
Clicks on apply job button in viral distribution of the ad.
data[].viralLandingPageClicks
number
Clicks on landing page in viral distribution.
data[].viralLikes
number
Total likes in viral distribution of the ad.
data[].viralOneClickLeadFormOpens
number
One-click lead form opens in viral distribution.
data[].viralOneClickLeads
number
Leads generated in one click in viral distribution.
data[].viralOtherEngagements
number
Other engagements in viral distribution of the ad.
data[].viralPostClickJobApplications
number
Job applications initiated post-clicking in viral distribution.
data[].viralPostClickJobApplyClicks
number
Clicks on apply job button post-clicking in viral distribution.
data[].viralPostClickRegistrations
number
Registrations completed post-clicking in viral distribution.
data[].viralPostViewJobApplications
number
Job applications initiated post-viewing in viral distribution.
data[].viralPostViewJobApplyClicks
number
Clicks on apply job button post-viewing in viral distribution.
data[].viralPostViewRegistrations
number
Registrations completed post-viewing in viral distribution.
data[].viralReactions
number
Total reactions in viral distribution of the ad.
data[].viralRegistrations
number
Total registrations in viral distribution of the ad.
data[].viralShares
number
Total shares in viral distribution of the ad.
data[].viralTotalEngagements
number
Total engagements in viral distribution of the ad.
data[].viralVideoCompletions
number
Completions of videos in viral distribution.
data[].viralVideoFirstQuartileCompletions
number
First quartile completions of videos in viral distribution.
data[].viralVideoMidpointCompletions
number
Midpoint completions of videos in viral distribution.
data[].viralVideoStarts
number
Total video starts in viral distribution of the ad.
data[].viralVideoThirdQuartileCompletions
number
Third quartile completions of videos in viral distribution.
data[].viralVideoViews
number
Total views of videos in viral distribution of the ad.
data[].pivot
string
Pivot dimension used for this analytics record
data[].sponsoredCampaign
string
URN of the sponsored campaign this analytics record belongs to
Ad Member Country Analytics Context Store SQL Query
Run a SQL query against ad member country analytics records in the Airbyte Context Store. SQL projections may return any set of columns, so each result row is a dictionary matching the query's selected fields. Only available in hosted mode.
Use the hosted server documentation to find the qualified Context Store table name and SQL guidance.
Returns ad analytics data pivoted by member industry. Provides performance metrics including clicks, impressions, spend, and engagement data grouped by member industry.
Ad Member Industry Analytics Context Store Search
Search and filter ad member industry analytics records powered by Airbyte's data sync. This often provides additional fields and operators beyond what the API natively supports, making it easier to narrow down results before performing further operations. Only available in hosted mode.
The number of clicks on interactive card elements.
cardImpressions
number
The number of times interactive cards were displayed.
clicks
number
Total number of clicks on the ad.
commentLikes
number
The count of likes on comments related to the ad.
comments
number
The number of comments on the ad.
companyPageClicks
number
Clicks on the company page associated with the ad.
conversionValueInLocalCurrency
number
Conversion value in the local currency.
costInLocalCurrency
number
Cost of ad campaign in the local currency.
costInUsd
number
Cost of ad campaign in USD.
documentCompletions
number
Number of completions for document views.
documentFirstQuartileCompletions
number
Completions for first quartile of document views.
documentMidpointCompletions
number
Completions for midpoint of document views.
documentThirdQuartileCompletions
number
Completions for third quartile of document views.
downloadClicks
number
Clicks on download links in the ad.
end_date
string
End date of the ad analytics data.
externalWebsiteConversions
number
Conversions that lead to external websites.
externalWebsitePostClickConversions
number
Post-click conversions on external websites.
externalWebsitePostViewConversions
number
Post-view conversions on external websites.
follows
number
Number of follows generated by the ad.
fullScreenPlays
number
Number of times videos were played in fullscreen mode.
impressions
number
Total number of times the ad was displayed.
jobApplications
number
Number of job applications initiated through the ad.
jobApplyClicks
number
Clicks on apply job button in the ad.
landingPageClicks
number
Clicks on the landing page associated with the ad.
leadGenerationMailContactInfoShares
number
Shares of contact information through lead generation.
leadGenerationMailInterestedClicks
number
Clicks on expressing interest through lead generation mail.
likes
number
Total likes received on the ad.
oneClickLeadFormOpens
number
Number of times lead forms were opened in one click.
oneClickLeads
number
Leads generated in one click.
opens
number
The number of times the ad was opened or expanded.
otherEngagements
number
Engagements other than clicks on the ad.
pivotValues
array
Values used for pivoting the analytics.
string_of_pivot_values
string
Comma-separated string of pivot values for this analytics record
postClickJobApplications
number
Job applications initiated post-clicking on the ad.
postClickJobApplyClicks
number
Clicks on apply job button post-clicking on the ad.
postClickRegistrations
number
Registrations completed post-clicking on the ad.
postViewJobApplications
number
Job applications initiated post-viewing the ad.
postViewJobApplyClicks
number
Clicks on apply job button post-viewing the ad.
postViewRegistrations
number
Registrations completed post-viewing the ad.
reactions
number
Total reactions (e.g., like, love, celebrate) on the ad.
registrations
number
Total registrations completed through the ad.
sends
number
Number of messages sent through the ad.
shares
number
Total shares generated by the ad.
start_date
string
Start date of the ad analytics data.
talentLeads
number
Number of leads related to talent acquisition.
textUrlClicks
number
Clicks on text URLs within the ad.
totalEngagements
number
Total number of engagements on the ad.
validWorkEmailLeads
number
Leads generated through valid work emails.
videoCompletions
number
Number of times videos were watched till completion.
videoFirstQuartileCompletions
number
Completions for first quartile of video views.
videoMidpointCompletions
number
Completions for midpoint of video views.
videoStarts
number
Total video starts initiated by users.
videoThirdQuartileCompletions
number
Completions for third quartile of video views.
videoViews
number
Total views of videos in the ad.
viralCardClicks
number
Clicks on interactive card components in viral distribution.
viralCardImpressions
number
Impressions of interactive cards in viral distribution.
viralClicks
number
Total clicks in viral distribution of the ad.
viralCommentLikes
number
Likes received on comments in viral distribution.
viralComments
number
Number of comments in viral distribution of the ad.
viralCompanyPageClicks
number
Clicks on the company page in viral distribution.
viralDocumentCompletions
number
Complete views of documents in viral distribution.
viralDocumentFirstQuartileCompletions
number
First quartile completions of documents in viral distribution.
viralDocumentMidpointCompletions
number
Midpoint completions of documents in viral distribution.
viralDocumentThirdQuartileCompletions
number
Third quartile completions of documents in viral distribution.
viralDownloadClicks
number
Clicks on downloads in viral distribution of the ad.
viralExternalWebsiteConversions
number
External website conversions in viral distribution.
viralExternalWebsitePostClickConversions
number
Post-click conversions on external websites in viral distribution.
viralExternalWebsitePostViewConversions
number
Post-view conversions on external websites in viral distribution.
viralFollows
number
Follows generated in viral distribution of the ad.
viralFullScreenPlays
number
Fullscreen video plays in viral distribution.
viralImpressions
number
Total impressions in viral distribution of the ad.
viralJobApplications
number
Job applications initiated in viral distribution.
viralJobApplyClicks
number
Clicks on apply job button in viral distribution of the ad.
viralLandingPageClicks
number
Clicks on landing page in viral distribution.
viralLikes
number
Total likes in viral distribution of the ad.
viralOneClickLeadFormOpens
number
One-click lead form opens in viral distribution.
viralOneClickLeads
number
Leads generated in one click in viral distribution.
viralOtherEngagements
number
Other engagements in viral distribution of the ad.
viralPostClickJobApplications
number
Job applications initiated post-clicking in viral distribution.
viralPostClickJobApplyClicks
number
Clicks on apply job button post-clicking in viral distribution.
viralPostClickRegistrations
number
Registrations completed post-clicking in viral distribution.
viralPostViewJobApplications
number
Job applications initiated post-viewing in viral distribution.
viralPostViewJobApplyClicks
number
Clicks on apply job button post-viewing in viral distribution.
viralPostViewRegistrations
number
Registrations completed post-viewing in viral distribution.
viralReactions
number
Total reactions in viral distribution of the ad.
viralRegistrations
number
Total registrations in viral distribution of the ad.
viralShares
number
Total shares in viral distribution of the ad.
viralTotalEngagements
number
Total engagements in viral distribution of the ad.
viralVideoCompletions
number
Completions of videos in viral distribution.
viralVideoFirstQuartileCompletions
number
First quartile completions of videos in viral distribution.
viralVideoMidpointCompletions
number
Midpoint completions of videos in viral distribution.
viralVideoStarts
number
Total video starts in viral distribution of the ad.
viralVideoThirdQuartileCompletions
number
Third quartile completions of videos in viral distribution.
viralVideoViews
number
Total views of videos in viral distribution of the ad.
pivot
string
Pivot dimension used for this analytics record
sponsoredCampaign
string
URN of the sponsored campaign this analytics record belongs to
Response Schema
Field Name
Type
Description
data
array
List of matching records
meta
object
Pagination metadata
meta.has_more
boolean
Whether additional pages are available
meta.cursor
string | null
Cursor for next page of results
meta.took_ms
number | null
Query execution time in milliseconds
data[].actionClicks
number
The number of clicks on action buttons in the ad.
data[].adUnitClicks
number
The number of clicks on ad unit components.
data[].approximateMemberReach
number
An approximation of unique ad impressions.
data[].cardClicks
number
The number of clicks on interactive card elements.
data[].cardImpressions
number
The number of times interactive cards were displayed.
data[].clicks
number
Total number of clicks on the ad.
data[].commentLikes
number
The count of likes on comments related to the ad.
data[].comments
number
The number of comments on the ad.
data[].companyPageClicks
number
Clicks on the company page associated with the ad.
data[].conversionValueInLocalCurrency
number
Conversion value in the local currency.
data[].costInLocalCurrency
number
Cost of ad campaign in the local currency.
data[].costInUsd
number
Cost of ad campaign in USD.
data[].documentCompletions
number
Number of completions for document views.
data[].documentFirstQuartileCompletions
number
Completions for first quartile of document views.
data[].documentMidpointCompletions
number
Completions for midpoint of document views.
data[].documentThirdQuartileCompletions
number
Completions for third quartile of document views.
data[].downloadClicks
number
Clicks on download links in the ad.
data[].end_date
string
End date of the ad analytics data.
data[].externalWebsiteConversions
number
Conversions that lead to external websites.
data[].externalWebsitePostClickConversions
number
Post-click conversions on external websites.
data[].externalWebsitePostViewConversions
number
Post-view conversions on external websites.
data[].follows
number
Number of follows generated by the ad.
data[].fullScreenPlays
number
Number of times videos were played in fullscreen mode.
data[].impressions
number
Total number of times the ad was displayed.
data[].jobApplications
number
Number of job applications initiated through the ad.
data[].jobApplyClicks
number
Clicks on apply job button in the ad.
data[].landingPageClicks
number
Clicks on the landing page associated with the ad.
data[].leadGenerationMailContactInfoShares
number
Shares of contact information through lead generation.
data[].leadGenerationMailInterestedClicks
number
Clicks on expressing interest through lead generation mail.
data[].likes
number
Total likes received on the ad.
data[].oneClickLeadFormOpens
number
Number of times lead forms were opened in one click.
data[].oneClickLeads
number
Leads generated in one click.
data[].opens
number
The number of times the ad was opened or expanded.
data[].otherEngagements
number
Engagements other than clicks on the ad.
data[].pivotValues
array
Values used for pivoting the analytics.
data[].string_of_pivot_values
string
Comma-separated string of pivot values for this analytics record
data[].postClickJobApplications
number
Job applications initiated post-clicking on the ad.
data[].postClickJobApplyClicks
number
Clicks on apply job button post-clicking on the ad.
data[].postClickRegistrations
number
Registrations completed post-clicking on the ad.
data[].postViewJobApplications
number
Job applications initiated post-viewing the ad.
data[].postViewJobApplyClicks
number
Clicks on apply job button post-viewing the ad.
data[].postViewRegistrations
number
Registrations completed post-viewing the ad.
data[].reactions
number
Total reactions (e.g., like, love, celebrate) on the ad.
data[].registrations
number
Total registrations completed through the ad.
data[].sends
number
Number of messages sent through the ad.
data[].shares
number
Total shares generated by the ad.
data[].start_date
string
Start date of the ad analytics data.
data[].talentLeads
number
Number of leads related to talent acquisition.
data[].textUrlClicks
number
Clicks on text URLs within the ad.
data[].totalEngagements
number
Total number of engagements on the ad.
data[].validWorkEmailLeads
number
Leads generated through valid work emails.
data[].videoCompletions
number
Number of times videos were watched till completion.
data[].videoFirstQuartileCompletions
number
Completions for first quartile of video views.
data[].videoMidpointCompletions
number
Completions for midpoint of video views.
data[].videoStarts
number
Total video starts initiated by users.
data[].videoThirdQuartileCompletions
number
Completions for third quartile of video views.
data[].videoViews
number
Total views of videos in the ad.
data[].viralCardClicks
number
Clicks on interactive card components in viral distribution.
data[].viralCardImpressions
number
Impressions of interactive cards in viral distribution.
data[].viralClicks
number
Total clicks in viral distribution of the ad.
data[].viralCommentLikes
number
Likes received on comments in viral distribution.
data[].viralComments
number
Number of comments in viral distribution of the ad.
data[].viralCompanyPageClicks
number
Clicks on the company page in viral distribution.
data[].viralDocumentCompletions
number
Complete views of documents in viral distribution.
data[].viralDocumentFirstQuartileCompletions
number
First quartile completions of documents in viral distribution.
data[].viralDocumentMidpointCompletions
number
Midpoint completions of documents in viral distribution.
data[].viralDocumentThirdQuartileCompletions
number
Third quartile completions of documents in viral distribution.
data[].viralDownloadClicks
number
Clicks on downloads in viral distribution of the ad.
data[].viralExternalWebsiteConversions
number
External website conversions in viral distribution.
data[].viralExternalWebsitePostClickConversions
number
Post-click conversions on external websites in viral distribution.
data[].viralExternalWebsitePostViewConversions
number
Post-view conversions on external websites in viral distribution.
data[].viralFollows
number
Follows generated in viral distribution of the ad.
data[].viralFullScreenPlays
number
Fullscreen video plays in viral distribution.
data[].viralImpressions
number
Total impressions in viral distribution of the ad.
data[].viralJobApplications
number
Job applications initiated in viral distribution.
data[].viralJobApplyClicks
number
Clicks on apply job button in viral distribution of the ad.
data[].viralLandingPageClicks
number
Clicks on landing page in viral distribution.
data[].viralLikes
number
Total likes in viral distribution of the ad.
data[].viralOneClickLeadFormOpens
number
One-click lead form opens in viral distribution.
data[].viralOneClickLeads
number
Leads generated in one click in viral distribution.
data[].viralOtherEngagements
number
Other engagements in viral distribution of the ad.
data[].viralPostClickJobApplications
number
Job applications initiated post-clicking in viral distribution.
data[].viralPostClickJobApplyClicks
number
Clicks on apply job button post-clicking in viral distribution.
data[].viralPostClickRegistrations
number
Registrations completed post-clicking in viral distribution.
data[].viralPostViewJobApplications
number
Job applications initiated post-viewing in viral distribution.
data[].viralPostViewJobApplyClicks
number
Clicks on apply job button post-viewing in viral distribution.
data[].viralPostViewRegistrations
number
Registrations completed post-viewing in viral distribution.
data[].viralReactions
number
Total reactions in viral distribution of the ad.
data[].viralRegistrations
number
Total registrations in viral distribution of the ad.
data[].viralShares
number
Total shares in viral distribution of the ad.
data[].viralTotalEngagements
number
Total engagements in viral distribution of the ad.
data[].viralVideoCompletions
number
Completions of videos in viral distribution.
data[].viralVideoFirstQuartileCompletions
number
First quartile completions of videos in viral distribution.
data[].viralVideoMidpointCompletions
number
Midpoint completions of videos in viral distribution.
data[].viralVideoStarts
number
Total video starts in viral distribution of the ad.
data[].viralVideoThirdQuartileCompletions
number
Third quartile completions of videos in viral distribution.
data[].viralVideoViews
number
Total views of videos in viral distribution of the ad.
data[].pivot
string
Pivot dimension used for this analytics record
data[].sponsoredCampaign
string
URN of the sponsored campaign this analytics record belongs to
Ad Member Industry Analytics Context Store SQL Query
Run a SQL query against ad member industry analytics records in the Airbyte Context Store. SQL projections may return any set of columns, so each result row is a dictionary matching the query's selected fields. Only available in hosted mode.
Use the hosted server documentation to find the qualified Context Store table name and SQL guidance.
Returns ad analytics data pivoted by member job function. Provides performance metrics including clicks, impressions, spend, and engagement data grouped by member job function.
Ad Member Job Function Analytics Context Store Search
Search and filter ad member job function analytics records powered by Airbyte's data sync. This often provides additional fields and operators beyond what the API natively supports, making it easier to narrow down results before performing further operations. Only available in hosted mode.
The number of clicks on interactive card elements.
cardImpressions
number
The number of times interactive cards were displayed.
clicks
number
Total number of clicks on the ad.
commentLikes
number
The count of likes on comments related to the ad.
comments
number
The number of comments on the ad.
companyPageClicks
number
Clicks on the company page associated with the ad.
conversionValueInLocalCurrency
number
Conversion value in the local currency.
costInLocalCurrency
number
Cost of ad campaign in the local currency.
costInUsd
number
Cost of ad campaign in USD.
documentCompletions
number
Number of completions for document views.
documentFirstQuartileCompletions
number
Completions for first quartile of document views.
documentMidpointCompletions
number
Completions for midpoint of document views.
documentThirdQuartileCompletions
number
Completions for third quartile of document views.
downloadClicks
number
Clicks on download links in the ad.
end_date
string
End date of the ad analytics data.
externalWebsiteConversions
number
Conversions that lead to external websites.
externalWebsitePostClickConversions
number
Post-click conversions on external websites.
externalWebsitePostViewConversions
number
Post-view conversions on external websites.
follows
number
Number of follows generated by the ad.
fullScreenPlays
number
Number of times videos were played in fullscreen mode.
impressions
number
Total number of times the ad was displayed.
jobApplications
number
Number of job applications initiated through the ad.
jobApplyClicks
number
Clicks on apply job button in the ad.
landingPageClicks
number
Clicks on the landing page associated with the ad.
leadGenerationMailContactInfoShares
number
Shares of contact information through lead generation.
leadGenerationMailInterestedClicks
number
Clicks on expressing interest through lead generation mail.
likes
number
Total likes received on the ad.
oneClickLeadFormOpens
number
Number of times lead forms were opened in one click.
oneClickLeads
number
Leads generated in one click.
opens
number
The number of times the ad was opened or expanded.
otherEngagements
number
Engagements other than clicks on the ad.
pivotValues
array
Values used for pivoting the analytics.
string_of_pivot_values
string
Comma-separated string of pivot values for this analytics record
postClickJobApplications
number
Job applications initiated post-clicking on the ad.
postClickJobApplyClicks
number
Clicks on apply job button post-clicking on the ad.
postClickRegistrations
number
Registrations completed post-clicking on the ad.
postViewJobApplications
number
Job applications initiated post-viewing the ad.
postViewJobApplyClicks
number
Clicks on apply job button post-viewing the ad.
postViewRegistrations
number
Registrations completed post-viewing the ad.
reactions
number
Total reactions (e.g., like, love, celebrate) on the ad.
registrations
number
Total registrations completed through the ad.
sends
number
Number of messages sent through the ad.
shares
number
Total shares generated by the ad.
start_date
string
Start date of the ad analytics data.
talentLeads
number
Number of leads related to talent acquisition.
textUrlClicks
number
Clicks on text URLs within the ad.
totalEngagements
number
Total number of engagements on the ad.
validWorkEmailLeads
number
Leads generated through valid work emails.
videoCompletions
number
Number of times videos were watched till completion.
videoFirstQuartileCompletions
number
Completions for first quartile of video views.
videoMidpointCompletions
number
Completions for midpoint of video views.
videoStarts
number
Total video starts initiated by users.
videoThirdQuartileCompletions
number
Completions for third quartile of video views.
videoViews
number
Total views of videos in the ad.
viralCardClicks
number
Clicks on interactive card components in viral distribution.
viralCardImpressions
number
Impressions of interactive cards in viral distribution.
viralClicks
number
Total clicks in viral distribution of the ad.
viralCommentLikes
number
Likes received on comments in viral distribution.
viralComments
number
Number of comments in viral distribution of the ad.
viralCompanyPageClicks
number
Clicks on the company page in viral distribution.
viralDocumentCompletions
number
Complete views of documents in viral distribution.
viralDocumentFirstQuartileCompletions
number
First quartile completions of documents in viral distribution.
viralDocumentMidpointCompletions
number
Midpoint completions of documents in viral distribution.
viralDocumentThirdQuartileCompletions
number
Third quartile completions of documents in viral distribution.
viralDownloadClicks
number
Clicks on downloads in viral distribution of the ad.
viralExternalWebsiteConversions
number
External website conversions in viral distribution.
viralExternalWebsitePostClickConversions
number
Post-click conversions on external websites in viral distribution.
viralExternalWebsitePostViewConversions
number
Post-view conversions on external websites in viral distribution.
viralFollows
number
Follows generated in viral distribution of the ad.
viralFullScreenPlays
number
Fullscreen video plays in viral distribution.
viralImpressions
number
Total impressions in viral distribution of the ad.
viralJobApplications
number
Job applications initiated in viral distribution.
viralJobApplyClicks
number
Clicks on apply job button in viral distribution of the ad.
viralLandingPageClicks
number
Clicks on landing page in viral distribution.
viralLikes
number
Total likes in viral distribution of the ad.
viralOneClickLeadFormOpens
number
One-click lead form opens in viral distribution.
viralOneClickLeads
number
Leads generated in one click in viral distribution.
viralOtherEngagements
number
Other engagements in viral distribution of the ad.
viralPostClickJobApplications
number
Job applications initiated post-clicking in viral distribution.
viralPostClickJobApplyClicks
number
Clicks on apply job button post-clicking in viral distribution.
viralPostClickRegistrations
number
Registrations completed post-clicking in viral distribution.
viralPostViewJobApplications
number
Job applications initiated post-viewing in viral distribution.
viralPostViewJobApplyClicks
number
Clicks on apply job button post-viewing in viral distribution.
viralPostViewRegistrations
number
Registrations completed post-viewing in viral distribution.
viralReactions
number
Total reactions in viral distribution of the ad.
viralRegistrations
number
Total registrations in viral distribution of the ad.
viralShares
number
Total shares in viral distribution of the ad.
viralTotalEngagements
number
Total engagements in viral distribution of the ad.
viralVideoCompletions
number
Completions of videos in viral distribution.
viralVideoFirstQuartileCompletions
number
First quartile completions of videos in viral distribution.
viralVideoMidpointCompletions
number
Midpoint completions of videos in viral distribution.
viralVideoStarts
number
Total video starts in viral distribution of the ad.
viralVideoThirdQuartileCompletions
number
Third quartile completions of videos in viral distribution.
viralVideoViews
number
Total views of videos in viral distribution of the ad.
pivot
string
Pivot dimension used for this analytics record
sponsoredCampaign
string
URN of the sponsored campaign this analytics record belongs to
Response Schema
Field Name
Type
Description
data
array
List of matching records
meta
object
Pagination metadata
meta.has_more
boolean
Whether additional pages are available
meta.cursor
string | null
Cursor for next page of results
meta.took_ms
number | null
Query execution time in milliseconds
data[].actionClicks
number
The number of clicks on action buttons in the ad.
data[].adUnitClicks
number
The number of clicks on ad unit components.
data[].approximateMemberReach
number
An approximation of unique ad impressions.
data[].cardClicks
number
The number of clicks on interactive card elements.
data[].cardImpressions
number
The number of times interactive cards were displayed.
data[].clicks
number
Total number of clicks on the ad.
data[].commentLikes
number
The count of likes on comments related to the ad.
data[].comments
number
The number of comments on the ad.
data[].companyPageClicks
number
Clicks on the company page associated with the ad.
data[].conversionValueInLocalCurrency
number
Conversion value in the local currency.
data[].costInLocalCurrency
number
Cost of ad campaign in the local currency.
data[].costInUsd
number
Cost of ad campaign in USD.
data[].documentCompletions
number
Number of completions for document views.
data[].documentFirstQuartileCompletions
number
Completions for first quartile of document views.
data[].documentMidpointCompletions
number
Completions for midpoint of document views.
data[].documentThirdQuartileCompletions
number
Completions for third quartile of document views.
data[].downloadClicks
number
Clicks on download links in the ad.
data[].end_date
string
End date of the ad analytics data.
data[].externalWebsiteConversions
number
Conversions that lead to external websites.
data[].externalWebsitePostClickConversions
number
Post-click conversions on external websites.
data[].externalWebsitePostViewConversions
number
Post-view conversions on external websites.
data[].follows
number
Number of follows generated by the ad.
data[].fullScreenPlays
number
Number of times videos were played in fullscreen mode.
data[].impressions
number
Total number of times the ad was displayed.
data[].jobApplications
number
Number of job applications initiated through the ad.
data[].jobApplyClicks
number
Clicks on apply job button in the ad.
data[].landingPageClicks
number
Clicks on the landing page associated with the ad.
data[].leadGenerationMailContactInfoShares
number
Shares of contact information through lead generation.
data[].leadGenerationMailInterestedClicks
number
Clicks on expressing interest through lead generation mail.
data[].likes
number
Total likes received on the ad.
data[].oneClickLeadFormOpens
number
Number of times lead forms were opened in one click.
data[].oneClickLeads
number
Leads generated in one click.
data[].opens
number
The number of times the ad was opened or expanded.
data[].otherEngagements
number
Engagements other than clicks on the ad.
data[].pivotValues
array
Values used for pivoting the analytics.
data[].string_of_pivot_values
string
Comma-separated string of pivot values for this analytics record
data[].postClickJobApplications
number
Job applications initiated post-clicking on the ad.
data[].postClickJobApplyClicks
number
Clicks on apply job button post-clicking on the ad.
data[].postClickRegistrations
number
Registrations completed post-clicking on the ad.
data[].postViewJobApplications
number
Job applications initiated post-viewing the ad.
data[].postViewJobApplyClicks
number
Clicks on apply job button post-viewing the ad.
data[].postViewRegistrations
number
Registrations completed post-viewing the ad.
data[].reactions
number
Total reactions (e.g., like, love, celebrate) on the ad.
data[].registrations
number
Total registrations completed through the ad.
data[].sends
number
Number of messages sent through the ad.
data[].shares
number
Total shares generated by the ad.
data[].start_date
string
Start date of the ad analytics data.
data[].talentLeads
number
Number of leads related to talent acquisition.
data[].textUrlClicks
number
Clicks on text URLs within the ad.
data[].totalEngagements
number
Total number of engagements on the ad.
data[].validWorkEmailLeads
number
Leads generated through valid work emails.
data[].videoCompletions
number
Number of times videos were watched till completion.
data[].videoFirstQuartileCompletions
number
Completions for first quartile of video views.
data[].videoMidpointCompletions
number
Completions for midpoint of video views.
data[].videoStarts
number
Total video starts initiated by users.
data[].videoThirdQuartileCompletions
number
Completions for third quartile of video views.
data[].videoViews
number
Total views of videos in the ad.
data[].viralCardClicks
number
Clicks on interactive card components in viral distribution.
data[].viralCardImpressions
number
Impressions of interactive cards in viral distribution.
data[].viralClicks
number
Total clicks in viral distribution of the ad.
data[].viralCommentLikes
number
Likes received on comments in viral distribution.
data[].viralComments
number
Number of comments in viral distribution of the ad.
data[].viralCompanyPageClicks
number
Clicks on the company page in viral distribution.
data[].viralDocumentCompletions
number
Complete views of documents in viral distribution.
data[].viralDocumentFirstQuartileCompletions
number
First quartile completions of documents in viral distribution.
data[].viralDocumentMidpointCompletions
number
Midpoint completions of documents in viral distribution.
data[].viralDocumentThirdQuartileCompletions
number
Third quartile completions of documents in viral distribution.
data[].viralDownloadClicks
number
Clicks on downloads in viral distribution of the ad.
data[].viralExternalWebsiteConversions
number
External website conversions in viral distribution.
data[].viralExternalWebsitePostClickConversions
number
Post-click conversions on external websites in viral distribution.
data[].viralExternalWebsitePostViewConversions
number
Post-view conversions on external websites in viral distribution.
data[].viralFollows
number
Follows generated in viral distribution of the ad.
data[].viralFullScreenPlays
number
Fullscreen video plays in viral distribution.
data[].viralImpressions
number
Total impressions in viral distribution of the ad.
data[].viralJobApplications
number
Job applications initiated in viral distribution.
data[].viralJobApplyClicks
number
Clicks on apply job button in viral distribution of the ad.
data[].viralLandingPageClicks
number
Clicks on landing page in viral distribution.
data[].viralLikes
number
Total likes in viral distribution of the ad.
data[].viralOneClickLeadFormOpens
number
One-click lead form opens in viral distribution.
data[].viralOneClickLeads
number
Leads generated in one click in viral distribution.
data[].viralOtherEngagements
number
Other engagements in viral distribution of the ad.
data[].viralPostClickJobApplications
number
Job applications initiated post-clicking in viral distribution.
data[].viralPostClickJobApplyClicks
number
Clicks on apply job button post-clicking in viral distribution.
data[].viralPostClickRegistrations
number
Registrations completed post-clicking in viral distribution.
data[].viralPostViewJobApplications
number
Job applications initiated post-viewing in viral distribution.
data[].viralPostViewJobApplyClicks
number
Clicks on apply job button post-viewing in viral distribution.
data[].viralPostViewRegistrations
number
Registrations completed post-viewing in viral distribution.
data[].viralReactions
number
Total reactions in viral distribution of the ad.
data[].viralRegistrations
number
Total registrations in viral distribution of the ad.
data[].viralShares
number
Total shares in viral distribution of the ad.
data[].viralTotalEngagements
number
Total engagements in viral distribution of the ad.
data[].viralVideoCompletions
number
Completions of videos in viral distribution.
data[].viralVideoFirstQuartileCompletions
number
First quartile completions of videos in viral distribution.
data[].viralVideoMidpointCompletions
number
Midpoint completions of videos in viral distribution.
data[].viralVideoStarts
number
Total video starts in viral distribution of the ad.
data[].viralVideoThirdQuartileCompletions
number
Third quartile completions of videos in viral distribution.
data[].viralVideoViews
number
Total views of videos in viral distribution of the ad.
data[].pivot
string
Pivot dimension used for this analytics record
data[].sponsoredCampaign
string
URN of the sponsored campaign this analytics record belongs to
Ad Member Job Function Analytics Context Store SQL Query
Run a SQL query against ad member job function analytics records in the Airbyte Context Store. SQL projections may return any set of columns, so each result row is a dictionary matching the query's selected fields. Only available in hosted mode.
Use the hosted server documentation to find the qualified Context Store table name and SQL guidance.
Returns ad analytics data pivoted by member job title. Provides performance metrics including clicks, impressions, spend, and engagement data grouped by member job title.
Ad Member Job Title Analytics Context Store Search
Search and filter ad member job title analytics records powered by Airbyte's data sync. This often provides additional fields and operators beyond what the API natively supports, making it easier to narrow down results before performing further operations. Only available in hosted mode.
The number of clicks on interactive card elements.
cardImpressions
number
The number of times interactive cards were displayed.
clicks
number
Total number of clicks on the ad.
commentLikes
number
The count of likes on comments related to the ad.
comments
number
The number of comments on the ad.
companyPageClicks
number
Clicks on the company page associated with the ad.
conversionValueInLocalCurrency
number
Conversion value in the local currency.
costInLocalCurrency
number
Cost of ad campaign in the local currency.
costInUsd
number
Cost of ad campaign in USD.
documentCompletions
number
Number of completions for document views.
documentFirstQuartileCompletions
number
Completions for first quartile of document views.
documentMidpointCompletions
number
Completions for midpoint of document views.
documentThirdQuartileCompletions
number
Completions for third quartile of document views.
downloadClicks
number
Clicks on download links in the ad.
end_date
string
End date of the ad analytics data.
externalWebsiteConversions
number
Conversions that lead to external websites.
externalWebsitePostClickConversions
number
Post-click conversions on external websites.
externalWebsitePostViewConversions
number
Post-view conversions on external websites.
follows
number
Number of follows generated by the ad.
fullScreenPlays
number
Number of times videos were played in fullscreen mode.
impressions
number
Total number of times the ad was displayed.
jobApplications
number
Number of job applications initiated through the ad.
jobApplyClicks
number
Clicks on apply job button in the ad.
landingPageClicks
number
Clicks on the landing page associated with the ad.
leadGenerationMailContactInfoShares
number
Shares of contact information through lead generation.
leadGenerationMailInterestedClicks
number
Clicks on expressing interest through lead generation mail.
likes
number
Total likes received on the ad.
oneClickLeadFormOpens
number
Number of times lead forms were opened in one click.
oneClickLeads
number
Leads generated in one click.
opens
number
The number of times the ad was opened or expanded.
otherEngagements
number
Engagements other than clicks on the ad.
pivotValues
array
Values used for pivoting the analytics.
string_of_pivot_values
string
Comma-separated string of pivot values for this analytics record
postClickJobApplications
number
Job applications initiated post-clicking on the ad.
postClickJobApplyClicks
number
Clicks on apply job button post-clicking on the ad.
postClickRegistrations
number
Registrations completed post-clicking on the ad.
postViewJobApplications
number
Job applications initiated post-viewing the ad.
postViewJobApplyClicks
number
Clicks on apply job button post-viewing the ad.
postViewRegistrations
number
Registrations completed post-viewing the ad.
reactions
number
Total reactions (e.g., like, love, celebrate) on the ad.
registrations
number
Total registrations completed through the ad.
sends
number
Number of messages sent through the ad.
shares
number
Total shares generated by the ad.
start_date
string
Start date of the ad analytics data.
talentLeads
number
Number of leads related to talent acquisition.
textUrlClicks
number
Clicks on text URLs within the ad.
totalEngagements
number
Total number of engagements on the ad.
validWorkEmailLeads
number
Leads generated through valid work emails.
videoCompletions
number
Number of times videos were watched till completion.
videoFirstQuartileCompletions
number
Completions for first quartile of video views.
videoMidpointCompletions
number
Completions for midpoint of video views.
videoStarts
number
Total video starts initiated by users.
videoThirdQuartileCompletions
number
Completions for third quartile of video views.
videoViews
number
Total views of videos in the ad.
viralCardClicks
number
Clicks on interactive card components in viral distribution.
viralCardImpressions
number
Impressions of interactive cards in viral distribution.
viralClicks
number
Total clicks in viral distribution of the ad.
viralCommentLikes
number
Likes received on comments in viral distribution.
viralComments
number
Number of comments in viral distribution of the ad.
viralCompanyPageClicks
number
Clicks on the company page in viral distribution.
viralDocumentCompletions
number
Complete views of documents in viral distribution.
viralDocumentFirstQuartileCompletions
number
First quartile completions of documents in viral distribution.
viralDocumentMidpointCompletions
number
Midpoint completions of documents in viral distribution.
viralDocumentThirdQuartileCompletions
number
Third quartile completions of documents in viral distribution.
viralDownloadClicks
number
Clicks on downloads in viral distribution of the ad.
viralExternalWebsiteConversions
number
External website conversions in viral distribution.
viralExternalWebsitePostClickConversions
number
Post-click conversions on external websites in viral distribution.
viralExternalWebsitePostViewConversions
number
Post-view conversions on external websites in viral distribution.
viralFollows
number
Follows generated in viral distribution of the ad.
viralFullScreenPlays
number
Fullscreen video plays in viral distribution.
viralImpressions
number
Total impressions in viral distribution of the ad.
viralJobApplications
number
Job applications initiated in viral distribution.
viralJobApplyClicks
number
Clicks on apply job button in viral distribution of the ad.
viralLandingPageClicks
number
Clicks on landing page in viral distribution.
viralLikes
number
Total likes in viral distribution of the ad.
viralOneClickLeadFormOpens
number
One-click lead form opens in viral distribution.
viralOneClickLeads
number
Leads generated in one click in viral distribution.
viralOtherEngagements
number
Other engagements in viral distribution of the ad.
viralPostClickJobApplications
number
Job applications initiated post-clicking in viral distribution.
viralPostClickJobApplyClicks
number
Clicks on apply job button post-clicking in viral distribution.
viralPostClickRegistrations
number
Registrations completed post-clicking in viral distribution.
viralPostViewJobApplications
number
Job applications initiated post-viewing in viral distribution.
viralPostViewJobApplyClicks
number
Clicks on apply job button post-viewing in viral distribution.
viralPostViewRegistrations
number
Registrations completed post-viewing in viral distribution.
viralReactions
number
Total reactions in viral distribution of the ad.
viralRegistrations
number
Total registrations in viral distribution of the ad.
viralShares
number
Total shares in viral distribution of the ad.
viralTotalEngagements
number
Total engagements in viral distribution of the ad.
viralVideoCompletions
number
Completions of videos in viral distribution.
viralVideoFirstQuartileCompletions
number
First quartile completions of videos in viral distribution.
viralVideoMidpointCompletions
number
Midpoint completions of videos in viral distribution.
viralVideoStarts
number
Total video starts in viral distribution of the ad.
viralVideoThirdQuartileCompletions
number
Third quartile completions of videos in viral distribution.
viralVideoViews
number
Total views of videos in viral distribution of the ad.
pivot
string
Pivot dimension used for this analytics record
sponsoredCampaign
string
URN of the sponsored campaign this analytics record belongs to
Response Schema
Field Name
Type
Description
data
array
List of matching records
meta
object
Pagination metadata
meta.has_more
boolean
Whether additional pages are available
meta.cursor
string | null
Cursor for next page of results
meta.took_ms
number | null
Query execution time in milliseconds
data[].actionClicks
number
The number of clicks on action buttons in the ad.
data[].adUnitClicks
number
The number of clicks on ad unit components.
data[].approximateMemberReach
number
An approximation of unique ad impressions.
data[].cardClicks
number
The number of clicks on interactive card elements.
data[].cardImpressions
number
The number of times interactive cards were displayed.
data[].clicks
number
Total number of clicks on the ad.
data[].commentLikes
number
The count of likes on comments related to the ad.
data[].comments
number
The number of comments on the ad.
data[].companyPageClicks
number
Clicks on the company page associated with the ad.
data[].conversionValueInLocalCurrency
number
Conversion value in the local currency.
data[].costInLocalCurrency
number
Cost of ad campaign in the local currency.
data[].costInUsd
number
Cost of ad campaign in USD.
data[].documentCompletions
number
Number of completions for document views.
data[].documentFirstQuartileCompletions
number
Completions for first quartile of document views.
data[].documentMidpointCompletions
number
Completions for midpoint of document views.
data[].documentThirdQuartileCompletions
number
Completions for third quartile of document views.
data[].downloadClicks
number
Clicks on download links in the ad.
data[].end_date
string
End date of the ad analytics data.
data[].externalWebsiteConversions
number
Conversions that lead to external websites.
data[].externalWebsitePostClickConversions
number
Post-click conversions on external websites.
data[].externalWebsitePostViewConversions
number
Post-view conversions on external websites.
data[].follows
number
Number of follows generated by the ad.
data[].fullScreenPlays
number
Number of times videos were played in fullscreen mode.
data[].impressions
number
Total number of times the ad was displayed.
data[].jobApplications
number
Number of job applications initiated through the ad.
data[].jobApplyClicks
number
Clicks on apply job button in the ad.
data[].landingPageClicks
number
Clicks on the landing page associated with the ad.
data[].leadGenerationMailContactInfoShares
number
Shares of contact information through lead generation.
data[].leadGenerationMailInterestedClicks
number
Clicks on expressing interest through lead generation mail.
data[].likes
number
Total likes received on the ad.
data[].oneClickLeadFormOpens
number
Number of times lead forms were opened in one click.
data[].oneClickLeads
number
Leads generated in one click.
data[].opens
number
The number of times the ad was opened or expanded.
data[].otherEngagements
number
Engagements other than clicks on the ad.
data[].pivotValues
array
Values used for pivoting the analytics.
data[].string_of_pivot_values
string
Comma-separated string of pivot values for this analytics record
data[].postClickJobApplications
number
Job applications initiated post-clicking on the ad.
data[].postClickJobApplyClicks
number
Clicks on apply job button post-clicking on the ad.
data[].postClickRegistrations
number
Registrations completed post-clicking on the ad.
data[].postViewJobApplications
number
Job applications initiated post-viewing the ad.
data[].postViewJobApplyClicks
number
Clicks on apply job button post-viewing the ad.
data[].postViewRegistrations
number
Registrations completed post-viewing the ad.
data[].reactions
number
Total reactions (e.g., like, love, celebrate) on the ad.
data[].registrations
number
Total registrations completed through the ad.
data[].sends
number
Number of messages sent through the ad.
data[].shares
number
Total shares generated by the ad.
data[].start_date
string
Start date of the ad analytics data.
data[].talentLeads
number
Number of leads related to talent acquisition.
data[].textUrlClicks
number
Clicks on text URLs within the ad.
data[].totalEngagements
number
Total number of engagements on the ad.
data[].validWorkEmailLeads
number
Leads generated through valid work emails.
data[].videoCompletions
number
Number of times videos were watched till completion.
data[].videoFirstQuartileCompletions
number
Completions for first quartile of video views.
data[].videoMidpointCompletions
number
Completions for midpoint of video views.
data[].videoStarts
number
Total video starts initiated by users.
data[].videoThirdQuartileCompletions
number
Completions for third quartile of video views.
data[].videoViews
number
Total views of videos in the ad.
data[].viralCardClicks
number
Clicks on interactive card components in viral distribution.
data[].viralCardImpressions
number
Impressions of interactive cards in viral distribution.
data[].viralClicks
number
Total clicks in viral distribution of the ad.
data[].viralCommentLikes
number
Likes received on comments in viral distribution.
data[].viralComments
number
Number of comments in viral distribution of the ad.
data[].viralCompanyPageClicks
number
Clicks on the company page in viral distribution.
data[].viralDocumentCompletions
number
Complete views of documents in viral distribution.
data[].viralDocumentFirstQuartileCompletions
number
First quartile completions of documents in viral distribution.
data[].viralDocumentMidpointCompletions
number
Midpoint completions of documents in viral distribution.
data[].viralDocumentThirdQuartileCompletions
number
Third quartile completions of documents in viral distribution.
data[].viralDownloadClicks
number
Clicks on downloads in viral distribution of the ad.
data[].viralExternalWebsiteConversions
number
External website conversions in viral distribution.
data[].viralExternalWebsitePostClickConversions
number
Post-click conversions on external websites in viral distribution.
data[].viralExternalWebsitePostViewConversions
number
Post-view conversions on external websites in viral distribution.
data[].viralFollows
number
Follows generated in viral distribution of the ad.
data[].viralFullScreenPlays
number
Fullscreen video plays in viral distribution.
data[].viralImpressions
number
Total impressions in viral distribution of the ad.
data[].viralJobApplications
number
Job applications initiated in viral distribution.
data[].viralJobApplyClicks
number
Clicks on apply job button in viral distribution of the ad.
data[].viralLandingPageClicks
number
Clicks on landing page in viral distribution.
data[].viralLikes
number
Total likes in viral distribution of the ad.
data[].viralOneClickLeadFormOpens
number
One-click lead form opens in viral distribution.
data[].viralOneClickLeads
number
Leads generated in one click in viral distribution.
data[].viralOtherEngagements
number
Other engagements in viral distribution of the ad.
data[].viralPostClickJobApplications
number
Job applications initiated post-clicking in viral distribution.
data[].viralPostClickJobApplyClicks
number
Clicks on apply job button post-clicking in viral distribution.
data[].viralPostClickRegistrations
number
Registrations completed post-clicking in viral distribution.
data[].viralPostViewJobApplications
number
Job applications initiated post-viewing in viral distribution.
data[].viralPostViewJobApplyClicks
number
Clicks on apply job button post-viewing in viral distribution.
data[].viralPostViewRegistrations
number
Registrations completed post-viewing in viral distribution.
data[].viralReactions
number
Total reactions in viral distribution of the ad.
data[].viralRegistrations
number
Total registrations in viral distribution of the ad.
data[].viralShares
number
Total shares in viral distribution of the ad.
data[].viralTotalEngagements
number
Total engagements in viral distribution of the ad.
data[].viralVideoCompletions
number
Completions of videos in viral distribution.
data[].viralVideoFirstQuartileCompletions
number
First quartile completions of videos in viral distribution.
data[].viralVideoMidpointCompletions
number
Midpoint completions of videos in viral distribution.
data[].viralVideoStarts
number
Total video starts in viral distribution of the ad.
data[].viralVideoThirdQuartileCompletions
number
Third quartile completions of videos in viral distribution.
data[].viralVideoViews
number
Total views of videos in viral distribution of the ad.
data[].pivot
string
Pivot dimension used for this analytics record
data[].sponsoredCampaign
string
URN of the sponsored campaign this analytics record belongs to
Ad Member Job Title Analytics Context Store SQL Query
Run a SQL query against ad member job title analytics records in the Airbyte Context Store. SQL projections may return any set of columns, so each result row is a dictionary matching the query's selected fields. Only available in hosted mode.
Use the hosted server documentation to find the qualified Context Store table name and SQL guidance.
Returns ad analytics data pivoted by member region. Provides performance metrics including clicks, impressions, spend, and engagement data grouped by member region.
Search and filter ad member region analytics records powered by Airbyte's data sync. This often provides additional fields and operators beyond what the API natively supports, making it easier to narrow down results before performing further operations. Only available in hosted mode.
The number of clicks on interactive card elements.
cardImpressions
number
The number of times interactive cards were displayed.
clicks
number
Total number of clicks on the ad.
commentLikes
number
The count of likes on comments related to the ad.
comments
number
The number of comments on the ad.
companyPageClicks
number
Clicks on the company page associated with the ad.
conversionValueInLocalCurrency
number
Conversion value in the local currency.
costInLocalCurrency
number
Cost of ad campaign in the local currency.
costInUsd
number
Cost of ad campaign in USD.
documentCompletions
number
Number of completions for document views.
documentFirstQuartileCompletions
number
Completions for first quartile of document views.
documentMidpointCompletions
number
Completions for midpoint of document views.
documentThirdQuartileCompletions
number
Completions for third quartile of document views.
downloadClicks
number
Clicks on download links in the ad.
end_date
string
End date of the ad analytics data.
externalWebsiteConversions
number
Conversions that lead to external websites.
externalWebsitePostClickConversions
number
Post-click conversions on external websites.
externalWebsitePostViewConversions
number
Post-view conversions on external websites.
follows
number
Number of follows generated by the ad.
fullScreenPlays
number
Number of times videos were played in fullscreen mode.
impressions
number
Total number of times the ad was displayed.
jobApplications
number
Number of job applications initiated through the ad.
jobApplyClicks
number
Clicks on apply job button in the ad.
landingPageClicks
number
Clicks on the landing page associated with the ad.
leadGenerationMailContactInfoShares
number
Shares of contact information through lead generation.
leadGenerationMailInterestedClicks
number
Clicks on expressing interest through lead generation mail.
likes
number
Total likes received on the ad.
oneClickLeadFormOpens
number
Number of times lead forms were opened in one click.
oneClickLeads
number
Leads generated in one click.
opens
number
The number of times the ad was opened or expanded.
otherEngagements
number
Engagements other than clicks on the ad.
pivotValues
array
Values used for pivoting the analytics.
string_of_pivot_values
string
Comma-separated string of pivot values for this analytics record
postClickJobApplications
number
Job applications initiated post-clicking on the ad.
postClickJobApplyClicks
number
Clicks on apply job button post-clicking on the ad.
postClickRegistrations
number
Registrations completed post-clicking on the ad.
postViewJobApplications
number
Job applications initiated post-viewing the ad.
postViewJobApplyClicks
number
Clicks on apply job button post-viewing the ad.
postViewRegistrations
number
Registrations completed post-viewing the ad.
reactions
number
Total reactions (e.g., like, love, celebrate) on the ad.
registrations
number
Total registrations completed through the ad.
sends
number
Number of messages sent through the ad.
shares
number
Total shares generated by the ad.
start_date
string
Start date of the ad analytics data.
talentLeads
number
Number of leads related to talent acquisition.
textUrlClicks
number
Clicks on text URLs within the ad.
totalEngagements
number
Total number of engagements on the ad.
validWorkEmailLeads
number
Leads generated through valid work emails.
videoCompletions
number
Number of times videos were watched till completion.
videoFirstQuartileCompletions
number
Completions for first quartile of video views.
videoMidpointCompletions
number
Completions for midpoint of video views.
videoStarts
number
Total video starts initiated by users.
videoThirdQuartileCompletions
number
Completions for third quartile of video views.
videoViews
number
Total views of videos in the ad.
viralCardClicks
number
Clicks on interactive card components in viral distribution.
viralCardImpressions
number
Impressions of interactive cards in viral distribution.
viralClicks
number
Total clicks in viral distribution of the ad.
viralCommentLikes
number
Likes received on comments in viral distribution.
viralComments
number
Number of comments in viral distribution of the ad.
viralCompanyPageClicks
number
Clicks on the company page in viral distribution.
viralDocumentCompletions
number
Complete views of documents in viral distribution.
viralDocumentFirstQuartileCompletions
number
First quartile completions of documents in viral distribution.
viralDocumentMidpointCompletions
number
Midpoint completions of documents in viral distribution.
viralDocumentThirdQuartileCompletions
number
Third quartile completions of documents in viral distribution.
viralDownloadClicks
number
Clicks on downloads in viral distribution of the ad.
viralExternalWebsiteConversions
number
External website conversions in viral distribution.
viralExternalWebsitePostClickConversions
number
Post-click conversions on external websites in viral distribution.
viralExternalWebsitePostViewConversions
number
Post-view conversions on external websites in viral distribution.
viralFollows
number
Follows generated in viral distribution of the ad.
viralFullScreenPlays
number
Fullscreen video plays in viral distribution.
viralImpressions
number
Total impressions in viral distribution of the ad.
viralJobApplications
number
Job applications initiated in viral distribution.
viralJobApplyClicks
number
Clicks on apply job button in viral distribution of the ad.
viralLandingPageClicks
number
Clicks on landing page in viral distribution.
viralLikes
number
Total likes in viral distribution of the ad.
viralOneClickLeadFormOpens
number
One-click lead form opens in viral distribution.
viralOneClickLeads
number
Leads generated in one click in viral distribution.
viralOtherEngagements
number
Other engagements in viral distribution of the ad.
viralPostClickJobApplications
number
Job applications initiated post-clicking in viral distribution.
viralPostClickJobApplyClicks
number
Clicks on apply job button post-clicking in viral distribution.
viralPostClickRegistrations
number
Registrations completed post-clicking in viral distribution.
viralPostViewJobApplications
number
Job applications initiated post-viewing in viral distribution.
viralPostViewJobApplyClicks
number
Clicks on apply job button post-viewing in viral distribution.
viralPostViewRegistrations
number
Registrations completed post-viewing in viral distribution.
viralReactions
number
Total reactions in viral distribution of the ad.
viralRegistrations
number
Total registrations in viral distribution of the ad.
viralShares
number
Total shares in viral distribution of the ad.
viralTotalEngagements
number
Total engagements in viral distribution of the ad.
viralVideoCompletions
number
Completions of videos in viral distribution.
viralVideoFirstQuartileCompletions
number
First quartile completions of videos in viral distribution.
viralVideoMidpointCompletions
number
Midpoint completions of videos in viral distribution.
viralVideoStarts
number
Total video starts in viral distribution of the ad.
viralVideoThirdQuartileCompletions
number
Third quartile completions of videos in viral distribution.
viralVideoViews
number
Total views of videos in viral distribution of the ad.
pivot
string
Pivot dimension used for this analytics record
sponsoredCampaign
string
URN of the sponsored campaign this analytics record belongs to
Response Schema
Field Name
Type
Description
data
array
List of matching records
meta
object
Pagination metadata
meta.has_more
boolean
Whether additional pages are available
meta.cursor
string | null
Cursor for next page of results
meta.took_ms
number | null
Query execution time in milliseconds
data[].actionClicks
number
The number of clicks on action buttons in the ad.
data[].adUnitClicks
number
The number of clicks on ad unit components.
data[].approximateMemberReach
number
An approximation of unique ad impressions.
data[].cardClicks
number
The number of clicks on interactive card elements.
data[].cardImpressions
number
The number of times interactive cards were displayed.
data[].clicks
number
Total number of clicks on the ad.
data[].commentLikes
number
The count of likes on comments related to the ad.
data[].comments
number
The number of comments on the ad.
data[].companyPageClicks
number
Clicks on the company page associated with the ad.
data[].conversionValueInLocalCurrency
number
Conversion value in the local currency.
data[].costInLocalCurrency
number
Cost of ad campaign in the local currency.
data[].costInUsd
number
Cost of ad campaign in USD.
data[].documentCompletions
number
Number of completions for document views.
data[].documentFirstQuartileCompletions
number
Completions for first quartile of document views.
data[].documentMidpointCompletions
number
Completions for midpoint of document views.
data[].documentThirdQuartileCompletions
number
Completions for third quartile of document views.
data[].downloadClicks
number
Clicks on download links in the ad.
data[].end_date
string
End date of the ad analytics data.
data[].externalWebsiteConversions
number
Conversions that lead to external websites.
data[].externalWebsitePostClickConversions
number
Post-click conversions on external websites.
data[].externalWebsitePostViewConversions
number
Post-view conversions on external websites.
data[].follows
number
Number of follows generated by the ad.
data[].fullScreenPlays
number
Number of times videos were played in fullscreen mode.
data[].impressions
number
Total number of times the ad was displayed.
data[].jobApplications
number
Number of job applications initiated through the ad.
data[].jobApplyClicks
number
Clicks on apply job button in the ad.
data[].landingPageClicks
number
Clicks on the landing page associated with the ad.
data[].leadGenerationMailContactInfoShares
number
Shares of contact information through lead generation.
data[].leadGenerationMailInterestedClicks
number
Clicks on expressing interest through lead generation mail.
data[].likes
number
Total likes received on the ad.
data[].oneClickLeadFormOpens
number
Number of times lead forms were opened in one click.
data[].oneClickLeads
number
Leads generated in one click.
data[].opens
number
The number of times the ad was opened or expanded.
data[].otherEngagements
number
Engagements other than clicks on the ad.
data[].pivotValues
array
Values used for pivoting the analytics.
data[].string_of_pivot_values
string
Comma-separated string of pivot values for this analytics record
data[].postClickJobApplications
number
Job applications initiated post-clicking on the ad.
data[].postClickJobApplyClicks
number
Clicks on apply job button post-clicking on the ad.
data[].postClickRegistrations
number
Registrations completed post-clicking on the ad.
data[].postViewJobApplications
number
Job applications initiated post-viewing the ad.
data[].postViewJobApplyClicks
number
Clicks on apply job button post-viewing the ad.
data[].postViewRegistrations
number
Registrations completed post-viewing the ad.
data[].reactions
number
Total reactions (e.g., like, love, celebrate) on the ad.
data[].registrations
number
Total registrations completed through the ad.
data[].sends
number
Number of messages sent through the ad.
data[].shares
number
Total shares generated by the ad.
data[].start_date
string
Start date of the ad analytics data.
data[].talentLeads
number
Number of leads related to talent acquisition.
data[].textUrlClicks
number
Clicks on text URLs within the ad.
data[].totalEngagements
number
Total number of engagements on the ad.
data[].validWorkEmailLeads
number
Leads generated through valid work emails.
data[].videoCompletions
number
Number of times videos were watched till completion.
data[].videoFirstQuartileCompletions
number
Completions for first quartile of video views.
data[].videoMidpointCompletions
number
Completions for midpoint of video views.
data[].videoStarts
number
Total video starts initiated by users.
data[].videoThirdQuartileCompletions
number
Completions for third quartile of video views.
data[].videoViews
number
Total views of videos in the ad.
data[].viralCardClicks
number
Clicks on interactive card components in viral distribution.
data[].viralCardImpressions
number
Impressions of interactive cards in viral distribution.
data[].viralClicks
number
Total clicks in viral distribution of the ad.
data[].viralCommentLikes
number
Likes received on comments in viral distribution.
data[].viralComments
number
Number of comments in viral distribution of the ad.
data[].viralCompanyPageClicks
number
Clicks on the company page in viral distribution.
data[].viralDocumentCompletions
number
Complete views of documents in viral distribution.
data[].viralDocumentFirstQuartileCompletions
number
First quartile completions of documents in viral distribution.
data[].viralDocumentMidpointCompletions
number
Midpoint completions of documents in viral distribution.
data[].viralDocumentThirdQuartileCompletions
number
Third quartile completions of documents in viral distribution.
data[].viralDownloadClicks
number
Clicks on downloads in viral distribution of the ad.
data[].viralExternalWebsiteConversions
number
External website conversions in viral distribution.
data[].viralExternalWebsitePostClickConversions
number
Post-click conversions on external websites in viral distribution.
data[].viralExternalWebsitePostViewConversions
number
Post-view conversions on external websites in viral distribution.
data[].viralFollows
number
Follows generated in viral distribution of the ad.
data[].viralFullScreenPlays
number
Fullscreen video plays in viral distribution.
data[].viralImpressions
number
Total impressions in viral distribution of the ad.
data[].viralJobApplications
number
Job applications initiated in viral distribution.
data[].viralJobApplyClicks
number
Clicks on apply job button in viral distribution of the ad.
data[].viralLandingPageClicks
number
Clicks on landing page in viral distribution.
data[].viralLikes
number
Total likes in viral distribution of the ad.
data[].viralOneClickLeadFormOpens
number
One-click lead form opens in viral distribution.
data[].viralOneClickLeads
number
Leads generated in one click in viral distribution.
data[].viralOtherEngagements
number
Other engagements in viral distribution of the ad.
data[].viralPostClickJobApplications
number
Job applications initiated post-clicking in viral distribution.
data[].viralPostClickJobApplyClicks
number
Clicks on apply job button post-clicking in viral distribution.
data[].viralPostClickRegistrations
number
Registrations completed post-clicking in viral distribution.
data[].viralPostViewJobApplications
number
Job applications initiated post-viewing in viral distribution.
data[].viralPostViewJobApplyClicks
number
Clicks on apply job button post-viewing in viral distribution.
data[].viralPostViewRegistrations
number
Registrations completed post-viewing in viral distribution.
data[].viralReactions
number
Total reactions in viral distribution of the ad.
data[].viralRegistrations
number
Total registrations in viral distribution of the ad.
data[].viralShares
number
Total shares in viral distribution of the ad.
data[].viralTotalEngagements
number
Total engagements in viral distribution of the ad.
data[].viralVideoCompletions
number
Completions of videos in viral distribution.
data[].viralVideoFirstQuartileCompletions
number
First quartile completions of videos in viral distribution.
data[].viralVideoMidpointCompletions
number
Midpoint completions of videos in viral distribution.
data[].viralVideoStarts
number
Total video starts in viral distribution of the ad.
data[].viralVideoThirdQuartileCompletions
number
Third quartile completions of videos in viral distribution.
data[].viralVideoViews
number
Total views of videos in viral distribution of the ad.
data[].pivot
string
Pivot dimension used for this analytics record
data[].sponsoredCampaign
string
URN of the sponsored campaign this analytics record belongs to
Ad Member Region Analytics Context Store SQL Query
Run a SQL query against ad member region analytics records in the Airbyte Context Store. SQL projections may return any set of columns, so each result row is a dictionary matching the query's selected fields. Only available in hosted mode.
Use the hosted server documentation to find the qualified Context Store table name and SQL guidance.
Returns ad analytics data pivoted by member seniority. Provides performance metrics including clicks, impressions, spend, and engagement data grouped by member seniority.
Ad Member Seniority Analytics Context Store Search
Search and filter ad member seniority analytics records powered by Airbyte's data sync. This often provides additional fields and operators beyond what the API natively supports, making it easier to narrow down results before performing further operations. Only available in hosted mode.
The number of clicks on interactive card elements.
cardImpressions
number
The number of times interactive cards were displayed.
clicks
number
Total number of clicks on the ad.
commentLikes
number
The count of likes on comments related to the ad.
comments
number
The number of comments on the ad.
companyPageClicks
number
Clicks on the company page associated with the ad.
conversionValueInLocalCurrency
number
Conversion value in the local currency.
costInLocalCurrency
number
Cost of ad campaign in the local currency.
costInUsd
number
Cost of ad campaign in USD.
documentCompletions
number
Number of completions for document views.
documentFirstQuartileCompletions
number
Completions for first quartile of document views.
documentMidpointCompletions
number
Completions for midpoint of document views.
documentThirdQuartileCompletions
number
Completions for third quartile of document views.
downloadClicks
number
Clicks on download links in the ad.
end_date
string
End date of the ad analytics data.
externalWebsiteConversions
number
Conversions that lead to external websites.
externalWebsitePostClickConversions
number
Post-click conversions on external websites.
externalWebsitePostViewConversions
number
Post-view conversions on external websites.
follows
number
Number of follows generated by the ad.
fullScreenPlays
number
Number of times videos were played in fullscreen mode.
impressions
number
Total number of times the ad was displayed.
jobApplications
number
Number of job applications initiated through the ad.
jobApplyClicks
number
Clicks on apply job button in the ad.
landingPageClicks
number
Clicks on the landing page associated with the ad.
leadGenerationMailContactInfoShares
number
Shares of contact information through lead generation.
leadGenerationMailInterestedClicks
number
Clicks on expressing interest through lead generation mail.
likes
number
Total likes received on the ad.
oneClickLeadFormOpens
number
Number of times lead forms were opened in one click.
oneClickLeads
number
Leads generated in one click.
opens
number
The number of times the ad was opened or expanded.
otherEngagements
number
Engagements other than clicks on the ad.
pivotValues
array
Values used for pivoting the analytics.
string_of_pivot_values
string
Comma-separated string of pivot values for this analytics record
postClickJobApplications
number
Job applications initiated post-clicking on the ad.
postClickJobApplyClicks
number
Clicks on apply job button post-clicking on the ad.
postClickRegistrations
number
Registrations completed post-clicking on the ad.
postViewJobApplications
number
Job applications initiated post-viewing the ad.
postViewJobApplyClicks
number
Clicks on apply job button post-viewing the ad.
postViewRegistrations
number
Registrations completed post-viewing the ad.
reactions
number
Total reactions (e.g., like, love, celebrate) on the ad.
registrations
number
Total registrations completed through the ad.
sends
number
Number of messages sent through the ad.
shares
number
Total shares generated by the ad.
start_date
string
Start date of the ad analytics data.
talentLeads
number
Number of leads related to talent acquisition.
textUrlClicks
number
Clicks on text URLs within the ad.
totalEngagements
number
Total number of engagements on the ad.
validWorkEmailLeads
number
Leads generated through valid work emails.
videoCompletions
number
Number of times videos were watched till completion.
videoFirstQuartileCompletions
number
Completions for first quartile of video views.
videoMidpointCompletions
number
Completions for midpoint of video views.
videoStarts
number
Total video starts initiated by users.
videoThirdQuartileCompletions
number
Completions for third quartile of video views.
videoViews
number
Total views of videos in the ad.
viralCardClicks
number
Clicks on interactive card components in viral distribution.
viralCardImpressions
number
Impressions of interactive cards in viral distribution.
viralClicks
number
Total clicks in viral distribution of the ad.
viralCommentLikes
number
Likes received on comments in viral distribution.
viralComments
number
Number of comments in viral distribution of the ad.
viralCompanyPageClicks
number
Clicks on the company page in viral distribution.
viralDocumentCompletions
number
Complete views of documents in viral distribution.
viralDocumentFirstQuartileCompletions
number
First quartile completions of documents in viral distribution.
viralDocumentMidpointCompletions
number
Midpoint completions of documents in viral distribution.
viralDocumentThirdQuartileCompletions
number
Third quartile completions of documents in viral distribution.
viralDownloadClicks
number
Clicks on downloads in viral distribution of the ad.
viralExternalWebsiteConversions
number
External website conversions in viral distribution.
viralExternalWebsitePostClickConversions
number
Post-click conversions on external websites in viral distribution.
viralExternalWebsitePostViewConversions
number
Post-view conversions on external websites in viral distribution.
viralFollows
number
Follows generated in viral distribution of the ad.
viralFullScreenPlays
number
Fullscreen video plays in viral distribution.
viralImpressions
number
Total impressions in viral distribution of the ad.
viralJobApplications
number
Job applications initiated in viral distribution.
viralJobApplyClicks
number
Clicks on apply job button in viral distribution of the ad.
viralLandingPageClicks
number
Clicks on landing page in viral distribution.
viralLikes
number
Total likes in viral distribution of the ad.
viralOneClickLeadFormOpens
number
One-click lead form opens in viral distribution.
viralOneClickLeads
number
Leads generated in one click in viral distribution.
viralOtherEngagements
number
Other engagements in viral distribution of the ad.
viralPostClickJobApplications
number
Job applications initiated post-clicking in viral distribution.
viralPostClickJobApplyClicks
number
Clicks on apply job button post-clicking in viral distribution.
viralPostClickRegistrations
number
Registrations completed post-clicking in viral distribution.
viralPostViewJobApplications
number
Job applications initiated post-viewing in viral distribution.
viralPostViewJobApplyClicks
number
Clicks on apply job button post-viewing in viral distribution.
viralPostViewRegistrations
number
Registrations completed post-viewing in viral distribution.
viralReactions
number
Total reactions in viral distribution of the ad.
viralRegistrations
number
Total registrations in viral distribution of the ad.
viralShares
number
Total shares in viral distribution of the ad.
viralTotalEngagements
number
Total engagements in viral distribution of the ad.
viralVideoCompletions
number
Completions of videos in viral distribution.
viralVideoFirstQuartileCompletions
number
First quartile completions of videos in viral distribution.
viralVideoMidpointCompletions
number
Midpoint completions of videos in viral distribution.
viralVideoStarts
number
Total video starts in viral distribution of the ad.
viralVideoThirdQuartileCompletions
number
Third quartile completions of videos in viral distribution.
viralVideoViews
number
Total views of videos in viral distribution of the ad.
pivot
string
Pivot dimension used for this analytics record
sponsoredCampaign
string
URN of the sponsored campaign this analytics record belongs to
Response Schema
Field Name
Type
Description
data
array
List of matching records
meta
object
Pagination metadata
meta.has_more
boolean
Whether additional pages are available
meta.cursor
string | null
Cursor for next page of results
meta.took_ms
number | null
Query execution time in milliseconds
data[].actionClicks
number
The number of clicks on action buttons in the ad.
data[].adUnitClicks
number
The number of clicks on ad unit components.
data[].approximateMemberReach
number
An approximation of unique ad impressions.
data[].cardClicks
number
The number of clicks on interactive card elements.
data[].cardImpressions
number
The number of times interactive cards were displayed.
data[].clicks
number
Total number of clicks on the ad.
data[].commentLikes
number
The count of likes on comments related to the ad.
data[].comments
number
The number of comments on the ad.
data[].companyPageClicks
number
Clicks on the company page associated with the ad.
data[].conversionValueInLocalCurrency
number
Conversion value in the local currency.
data[].costInLocalCurrency
number
Cost of ad campaign in the local currency.
data[].costInUsd
number
Cost of ad campaign in USD.
data[].documentCompletions
number
Number of completions for document views.
data[].documentFirstQuartileCompletions
number
Completions for first quartile of document views.
data[].documentMidpointCompletions
number
Completions for midpoint of document views.
data[].documentThirdQuartileCompletions
number
Completions for third quartile of document views.
data[].downloadClicks
number
Clicks on download links in the ad.
data[].end_date
string
End date of the ad analytics data.
data[].externalWebsiteConversions
number
Conversions that lead to external websites.
data[].externalWebsitePostClickConversions
number
Post-click conversions on external websites.
data[].externalWebsitePostViewConversions
number
Post-view conversions on external websites.
data[].follows
number
Number of follows generated by the ad.
data[].fullScreenPlays
number
Number of times videos were played in fullscreen mode.
data[].impressions
number
Total number of times the ad was displayed.
data[].jobApplications
number
Number of job applications initiated through the ad.
data[].jobApplyClicks
number
Clicks on apply job button in the ad.
data[].landingPageClicks
number
Clicks on the landing page associated with the ad.
data[].leadGenerationMailContactInfoShares
number
Shares of contact information through lead generation.
data[].leadGenerationMailInterestedClicks
number
Clicks on expressing interest through lead generation mail.
data[].likes
number
Total likes received on the ad.
data[].oneClickLeadFormOpens
number
Number of times lead forms were opened in one click.
data[].oneClickLeads
number
Leads generated in one click.
data[].opens
number
The number of times the ad was opened or expanded.
data[].otherEngagements
number
Engagements other than clicks on the ad.
data[].pivotValues
array
Values used for pivoting the analytics.
data[].string_of_pivot_values
string
Comma-separated string of pivot values for this analytics record
data[].postClickJobApplications
number
Job applications initiated post-clicking on the ad.
data[].postClickJobApplyClicks
number
Clicks on apply job button post-clicking on the ad.
data[].postClickRegistrations
number
Registrations completed post-clicking on the ad.
data[].postViewJobApplications
number
Job applications initiated post-viewing the ad.
data[].postViewJobApplyClicks
number
Clicks on apply job button post-viewing the ad.
data[].postViewRegistrations
number
Registrations completed post-viewing the ad.
data[].reactions
number
Total reactions (e.g., like, love, celebrate) on the ad.
data[].registrations
number
Total registrations completed through the ad.
data[].sends
number
Number of messages sent through the ad.
data[].shares
number
Total shares generated by the ad.
data[].start_date
string
Start date of the ad analytics data.
data[].talentLeads
number
Number of leads related to talent acquisition.
data[].textUrlClicks
number
Clicks on text URLs within the ad.
data[].totalEngagements
number
Total number of engagements on the ad.
data[].validWorkEmailLeads
number
Leads generated through valid work emails.
data[].videoCompletions
number
Number of times videos were watched till completion.
data[].videoFirstQuartileCompletions
number
Completions for first quartile of video views.
data[].videoMidpointCompletions
number
Completions for midpoint of video views.
data[].videoStarts
number
Total video starts initiated by users.
data[].videoThirdQuartileCompletions
number
Completions for third quartile of video views.
data[].videoViews
number
Total views of videos in the ad.
data[].viralCardClicks
number
Clicks on interactive card components in viral distribution.
data[].viralCardImpressions
number
Impressions of interactive cards in viral distribution.
data[].viralClicks
number
Total clicks in viral distribution of the ad.
data[].viralCommentLikes
number
Likes received on comments in viral distribution.
data[].viralComments
number
Number of comments in viral distribution of the ad.
data[].viralCompanyPageClicks
number
Clicks on the company page in viral distribution.
data[].viralDocumentCompletions
number
Complete views of documents in viral distribution.
data[].viralDocumentFirstQuartileCompletions
number
First quartile completions of documents in viral distribution.
data[].viralDocumentMidpointCompletions
number
Midpoint completions of documents in viral distribution.
data[].viralDocumentThirdQuartileCompletions
number
Third quartile completions of documents in viral distribution.
data[].viralDownloadClicks
number
Clicks on downloads in viral distribution of the ad.
data[].viralExternalWebsiteConversions
number
External website conversions in viral distribution.
data[].viralExternalWebsitePostClickConversions
number
Post-click conversions on external websites in viral distribution.
data[].viralExternalWebsitePostViewConversions
number
Post-view conversions on external websites in viral distribution.
data[].viralFollows
number
Follows generated in viral distribution of the ad.
data[].viralFullScreenPlays
number
Fullscreen video plays in viral distribution.
data[].viralImpressions
number
Total impressions in viral distribution of the ad.
data[].viralJobApplications
number
Job applications initiated in viral distribution.
data[].viralJobApplyClicks
number
Clicks on apply job button in viral distribution of the ad.
data[].viralLandingPageClicks
number
Clicks on landing page in viral distribution.
data[].viralLikes
number
Total likes in viral distribution of the ad.
data[].viralOneClickLeadFormOpens
number
One-click lead form opens in viral distribution.
data[].viralOneClickLeads
number
Leads generated in one click in viral distribution.
data[].viralOtherEngagements
number
Other engagements in viral distribution of the ad.
data[].viralPostClickJobApplications
number
Job applications initiated post-clicking in viral distribution.
data[].viralPostClickJobApplyClicks
number
Clicks on apply job button post-clicking in viral distribution.
data[].viralPostClickRegistrations
number
Registrations completed post-clicking in viral distribution.
data[].viralPostViewJobApplications
number
Job applications initiated post-viewing in viral distribution.
data[].viralPostViewJobApplyClicks
number
Clicks on apply job button post-viewing in viral distribution.
data[].viralPostViewRegistrations
number
Registrations completed post-viewing in viral distribution.
data[].viralReactions
number
Total reactions in viral distribution of the ad.
data[].viralRegistrations
number
Total registrations in viral distribution of the ad.
data[].viralShares
number
Total shares in viral distribution of the ad.
data[].viralTotalEngagements
number
Total engagements in viral distribution of the ad.
data[].viralVideoCompletions
number
Completions of videos in viral distribution.
data[].viralVideoFirstQuartileCompletions
number
First quartile completions of videos in viral distribution.
data[].viralVideoMidpointCompletions
number
Midpoint completions of videos in viral distribution.
data[].viralVideoStarts
number
Total video starts in viral distribution of the ad.
data[].viralVideoThirdQuartileCompletions
number
Third quartile completions of videos in viral distribution.
data[].viralVideoViews
number
Total views of videos in viral distribution of the ad.
data[].pivot
string
Pivot dimension used for this analytics record
data[].sponsoredCampaign
string
URN of the sponsored campaign this analytics record belongs to
Ad Member Seniority Analytics Context Store SQL Query
Run a SQL query against ad member seniority analytics records in the Airbyte Context Store. SQL projections may return any set of columns, so each result row is a dictionary matching the query's selected fields. Only available in hosted mode.
Use the hosted server documentation to find the qualified Context Store table name and SQL guidance.
Search and filter lead forms records powered by Airbyte's data sync. This often provides additional fields and operators beyond what the API natively supports, making it easier to narrow down results before performing further operations. Only available in hosted mode.
It's a Union of sponsoredAccount and organization.
sponsoredAccount is an URN of SponsoredAccountUrn that indicates the account of the advertiser.
organization is an URN of OrganizationUrn that indicates the company account of the marketer.
state
string
Information about the current state of the Lead Form.
content
object
Content of the Lead Form which will be displayed to the viewer.
created
integer
An epoch time corresponding to the creation of the form.
lastModified
integer
An epoch time corresponding to the last modified of of the form.
creationLocale
object
Locale of the entity.
This field serves as the preferred locale for all fields within the Lead Form with an object type that is capable of localization, such as MultiLocaleString.
hiddenFields
array
Hidden fields used by the owner to track key attributes of the form that generated the lead.
The field is empty if the owner chooses to not append any tracking attributes to the Lead Form.
reviewInfo
object
Latest information about the content review of the Lead Form.
It will not be present if the form has not been reviewed by the review pipeline.
versionId
integer
The version ID of the form. This is a derived field and is generated on the server side.
versionTag
string
The number of times the form has been modified.
Response Schema
Field Name
Type
Description
data
array
List of matching records
meta
object
Pagination metadata
meta.has_more
boolean
Whether additional pages are available
meta.cursor
string | null
Cursor for next page of results
meta.took_ms
number | null
Query execution time in milliseconds
data[].id
integer
Numerical identifier for the form.
data[].name
string
Name of the Lead Form provided by the owner.
data[].owner
object
URN that identifies the owner of the Lead Form.
It's a Union of sponsoredAccount and organization.
sponsoredAccount is an URN of SponsoredAccountUrn that indicates the account of the advertiser.
organization is an URN of OrganizationUrn that indicates the company account of the marketer.
data[].state
string
Information about the current state of the Lead Form.
data[].content
object
Content of the Lead Form which will be displayed to the viewer.
data[].created
integer
An epoch time corresponding to the creation of the form.
data[].lastModified
integer
An epoch time corresponding to the last modified of of the form.
data[].creationLocale
object
Locale of the entity.
This field serves as the preferred locale for all fields within the Lead Form with an object type that is capable of localization, such as MultiLocaleString.
data[].hiddenFields
array
Hidden fields used by the owner to track key attributes of the form that generated the lead.
The field is empty if the owner chooses to not append any tracking attributes to the Lead Form.
data[].reviewInfo
object
Latest information about the content review of the Lead Form.
It will not be present if the form has not been reviewed by the review pipeline.
data[].versionId
integer
The version ID of the form. This is a derived field and is generated on the server side.
Run a SQL query against lead forms records in the Airbyte Context Store. SQL projections may return any set of columns, so each result row is a dictionary matching the query's selected fields. Only available in hosted mode.
Use the hosted server documentation to find the qualified Context Store table name and SQL guidance.
Search and filter lead form responses records powered by Airbyte's data sync. This often provides additional fields and operators beyond what the API natively supports, making it easier to narrow down results before performing further operations. Only available in hosted mode.
Type of the lead representing the origination of the lead.
form
object
URN identifying which form this FormResponse belongs to.
owner
object
Owner of this Lead Form Response.
It is a Union of sponsoredAccount and organization.
sponsoredAccount is an URN of SponsoredAccountUrn that indicates the ad account of the advertiser.
organization is an URN of OrganizationUrn that indicates the company page of the advertiser.
ownerInfo
object
Record containing entity info that owns this Lead Form Response. It's a optional Union of sponsoredAccountInfo and organizationInfo.
leadMetadata
object
Metadata of a lead. This field is optional for test leads and other use cases where sponsored lead metadata (e.g. campaign) may not be relevant. If there is no value, the field is not returned.
leadMetadataInfo
object
Record containing a subset of fields resolved on demand from the lead metadata references (e.g. campaign name , campaign type). If there is no value, an empty object is returned.
associatedEntity
object
URN identifying which entity the lead is associated with. This field is optional for test leads and other use cases where leads don't have any associatedEntity. If there is no value, the field is not returned.
associatedEntityInfo
object
Record containing useful fields (creative status, ugc reference etc.) resolved on demand from the associated entity object. If there is no value, an empty object is returned.
submittedAt
integer
An epoch timestamp that recording when the form response was submitted.
responseId
object
The unique identifier for the form response generated in the front-end when a submitter submits the response.
formResponse
object
Answers provided by the form submitter.
testLead
boolean
Whether this is a test lead created for testing purposes.
submitter
string
From version 202408 onwards, Guest Leads (when a user submits a form without being logged in) submitted to lead forms, submitter field is treated as a null field and omitted from the JSON response.
For non-guest leads, the submitter field will still be included in the response and will provide the person's URN. Ex: "submitter": "urn:li:person:MpGcnvaU_p". Yes
versionedLeadGenFormUrn
string
URN identifying which form this FormResponse belongs to.
Response Schema
Field Name
Type
Description
data
array
List of matching records
meta
object
Pagination metadata
meta.has_more
boolean
Whether additional pages are available
meta.cursor
string | null
Cursor for next page of results
meta.took_ms
number | null
Query execution time in milliseconds
data[].id
string
Unique id to identify the Lead Form Response.
data[].leadType
string
Type of the lead representing the origination of the lead.
data[].form
object
URN identifying which form this FormResponse belongs to.
data[].owner
object
Owner of this Lead Form Response.
It is a Union of sponsoredAccount and organization.
sponsoredAccount is an URN of SponsoredAccountUrn that indicates the ad account of the advertiser.
organization is an URN of OrganizationUrn that indicates the company page of the advertiser.
data[].ownerInfo
object
Record containing entity info that owns this Lead Form Response. It's a optional Union of sponsoredAccountInfo and organizationInfo.
data[].leadMetadata
object
Metadata of a lead. This field is optional for test leads and other use cases where sponsored lead metadata (e.g. campaign) may not be relevant. If there is no value, the field is not returned.
data[].leadMetadataInfo
object
Record containing a subset of fields resolved on demand from the lead metadata references (e.g. campaign name , campaign type). If there is no value, an empty object is returned.
data[].associatedEntity
object
URN identifying which entity the lead is associated with. This field is optional for test leads and other use cases where leads don't have any associatedEntity. If there is no value, the field is not returned.
data[].associatedEntityInfo
object
Record containing useful fields (creative status, ugc reference etc.) resolved on demand from the associated entity object. If there is no value, an empty object is returned.
data[].submittedAt
integer
An epoch timestamp that recording when the form response was submitted.
data[].responseId
object
The unique identifier for the form response generated in the front-end when a submitter submits the response.
data[].formResponse
object
Answers provided by the form submitter.
data[].testLead
boolean
Whether this is a test lead created for testing purposes.
data[].submitter
string
From version 202408 onwards, Guest Leads (when a user submits a form without being logged in) submitted to lead forms, submitter field is treated as a null field and omitted from the JSON response.
For non-guest leads, the submitter field will still be included in the response and will provide the person's URN. Ex: "submitter": "urn:li:person:MpGcnvaU_p". Yes
data[].versionedLeadGenFormUrn
string
URN identifying which form this FormResponse belongs to.
Run a SQL query against lead form responses records in the Airbyte Context Store. SQL projections may return any set of columns, so each result row is a dictionary matching the query's selected fields. Only available in hosted mode.
Use the hosted server documentation to find the qualified Context Store table name and SQL guidance.