From 8442137b7573fdb87fc7193e581a7b9190242ab5 Mon Sep 17 00:00:00 2001 From: Denys Davydov Date: Wed, 18 Oct 2023 10:49:17 +0300 Subject: [PATCH 1/6] use default availability strategy --- .../connectors/source-tiktok-marketing/Dockerfile | 2 +- .../connectors/source-tiktok-marketing/metadata.yaml | 2 +- .../source_tiktok_marketing/streams.py | 5 ----- docs/integrations/sources/tiktok-marketing.md | 1 + 4 files changed, 3 insertions(+), 7 deletions(-) diff --git a/airbyte-integrations/connectors/source-tiktok-marketing/Dockerfile b/airbyte-integrations/connectors/source-tiktok-marketing/Dockerfile index 37a7559eab62..3e201f943610 100644 --- a/airbyte-integrations/connectors/source-tiktok-marketing/Dockerfile +++ b/airbyte-integrations/connectors/source-tiktok-marketing/Dockerfile @@ -32,5 +32,5 @@ COPY source_tiktok_marketing ./source_tiktok_marketing ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py" ENTRYPOINT ["python", "/airbyte/integration_code/main.py"] -LABEL io.airbyte.version=3.5.0 +LABEL io.airbyte.version=3.6.0 LABEL io.airbyte.name=airbyte/source-tiktok-marketing diff --git a/airbyte-integrations/connectors/source-tiktok-marketing/metadata.yaml b/airbyte-integrations/connectors/source-tiktok-marketing/metadata.yaml index 59e3beae3952..ecc9e7092dae 100644 --- a/airbyte-integrations/connectors/source-tiktok-marketing/metadata.yaml +++ b/airbyte-integrations/connectors/source-tiktok-marketing/metadata.yaml @@ -6,7 +6,7 @@ data: connectorSubtype: api connectorType: source definitionId: 4bfac00d-ce15-44ff-95b9-9e3c3e8fbd35 - dockerImageTag: 3.5.0 + dockerImageTag: 3.6.0 dockerRepository: airbyte/source-tiktok-marketing githubIssueLabel: source-tiktok-marketing icon: tiktok.svg diff --git a/airbyte-integrations/connectors/source-tiktok-marketing/source_tiktok_marketing/streams.py b/airbyte-integrations/connectors/source-tiktok-marketing/source_tiktok_marketing/streams.py index 671cf546b48b..dfb4eb33bf75 100644 --- a/airbyte-integrations/connectors/source-tiktok-marketing/source_tiktok_marketing/streams.py +++ b/airbyte-integrations/connectors/source-tiktok-marketing/source_tiktok_marketing/streams.py @@ -15,7 +15,6 @@ import pydantic import requests from airbyte_cdk.models import SyncMode -from airbyte_cdk.sources.streams.availability_strategy import AvailabilityStrategy from airbyte_cdk.sources.streams.core import package_name_from_class from airbyte_cdk.sources.streams.http import HttpStream from airbyte_cdk.sources.utils.schema_helpers import ResourceSchemaLoader @@ -172,10 +171,6 @@ def __init__(self, **kwargs): self._advertiser_id = kwargs.get("advertiser_id") self.is_sandbox = kwargs.get("is_sandbox") - @property - def availability_strategy(self) -> Optional["AvailabilityStrategy"]: - return None - def parse_response(self, response: requests.Response, **kwargs) -> Iterable[Mapping]: """All responses have the similar structure: { diff --git a/docs/integrations/sources/tiktok-marketing.md b/docs/integrations/sources/tiktok-marketing.md index f514c0d943ab..c07f4db17b74 100644 --- a/docs/integrations/sources/tiktok-marketing.md +++ b/docs/integrations/sources/tiktok-marketing.md @@ -581,6 +581,7 @@ The connector is restricted by [requests limitation](https://ads.tiktok.com/mark | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:-------------------------------------------------------------------------------------------------| +| 3.6.0 | 2023-10-18 | [00000](https://github.com/airbytehq/airbyte/pull/00000) | Use default availability strategy | | 3.5.0 | 2023-10-16 | [31445](https://github.com/airbytehq/airbyte/pull/31445) | Apply minimum date restrictions | | 3.4.1 | 2023-08-04 | [29083](https://github.com/airbytehq/airbyte/pull/29083) | Added new `is_smart_performance_campaign` property to `ad groups` stream schema | | 3.4.0 | 2023-07-13 | [27910](https://github.com/airbytehq/airbyte/pull/27910) | Added `include_deleted` config param - include deleted `ad_groups`, `ad`, `campaigns` to reports | From 318e50fb75c396842b260fdb9d951a1756252d39 Mon Sep 17 00:00:00 2001 From: Denys Davydov Date: Wed, 18 Oct 2023 10:52:28 +0300 Subject: [PATCH 2/6] update changelog --- docs/integrations/sources/tiktok-marketing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/integrations/sources/tiktok-marketing.md b/docs/integrations/sources/tiktok-marketing.md index c07f4db17b74..b506912f2b8f 100644 --- a/docs/integrations/sources/tiktok-marketing.md +++ b/docs/integrations/sources/tiktok-marketing.md @@ -581,7 +581,7 @@ The connector is restricted by [requests limitation](https://ads.tiktok.com/mark | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:-------------------------------------------------------------------------------------------------| -| 3.6.0 | 2023-10-18 | [00000](https://github.com/airbytehq/airbyte/pull/00000) | Use default availability strategy | +| 3.6.0 | 2023-10-18 | [31537](https://github.com/airbytehq/airbyte/pull/31537) | Use default availability strategy | | 3.5.0 | 2023-10-16 | [31445](https://github.com/airbytehq/airbyte/pull/31445) | Apply minimum date restrictions | | 3.4.1 | 2023-08-04 | [29083](https://github.com/airbytehq/airbyte/pull/29083) | Added new `is_smart_performance_campaign` property to `ad groups` stream schema | | 3.4.0 | 2023-07-13 | [27910](https://github.com/airbytehq/airbyte/pull/27910) | Added `include_deleted` config param - include deleted `ad_groups`, `ad`, `campaigns` to reports | From d0741a40b6e10a4fea4d7b0bed6c017112244837 Mon Sep 17 00:00:00 2001 From: Denys Davydov Date: Wed, 18 Oct 2023 14:04:56 +0300 Subject: [PATCH 3/6] update expected records --- .../integration_tests/expected_records.jsonl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-tiktok-marketing/integration_tests/expected_records.jsonl b/airbyte-integrations/connectors/source-tiktok-marketing/integration_tests/expected_records.jsonl index 31d5e68b4e2f..726e44ef88e3 100644 --- a/airbyte-integrations/connectors/source-tiktok-marketing/integration_tests/expected_records.jsonl +++ b/airbyte-integrations/connectors/source-tiktok-marketing/integration_tests/expected_records.jsonl @@ -1,7 +1,7 @@ {"stream": "advertisers", "data": {"cellphone_number": "+18023****63", "promotion_center_city": null, "role": "ROLE_ADVERTISER", "currency": "RUB", "display_timezone": "Europe/Moscow", "address": null, "balance": 0, "language": "", "name": "Airbyte0827", "promotion_center_province": null, "license_city": null, "status": "STATUS_LIMIT", "advertiser_id": 7001035076276387841, "email": "i***************@**********", "create_time": 1630055520, "description": null, "brand": null, "telephone_number": "+18023****63", "advertiser_account_type": "AUCTION", "license_url": null, "contacter": "Ai***te", "country": "RU", "industry": "291905", "license_no": null, "license_province": null, "timezone": "Europe/Moscow", "promotion_area": "0", "company": "Airbyte", "rejection_reason": "1:Dear customer,\nWe've detected that your account has not been logged into for a long period of time, which could cause a security risk. In order to improve platform security, your account has been temporarily suspended. For further information or if you have any questions, please submit a ticket under \"Account Review\" in the Business Support Center to raise an appeal.\nThank you for your understanding.\n,endtime:2031-12-31 07:32:13"}, "emitted_at": 1697523452470} -{"stream": "ads", "data": {"music_id": null, "optimization_event": null, "adgroup_id": 1779923881029666, "modify_time": "2023-10-16 14:53:29", "adgroup_name": "Ad group 20231016073545", "viewability_postbid_partner": "UNSET", "secondary_status": "AD_STATUS_BALANCE_EXCEED", "ad_texts": null, "is_new_structure": true, "deeplink": "", "video_id": "v10033g50000ckmkpnbc77ucmin3t88g", "advertiser_id": 7002238017842757633, "brand_safety_postbid_partner": "UNSET", "campaign_name": "UTM_PARAMSTraffic20231016173112", "image_ids": ["tos-alisg-p-0051c001-sg/oEnxmUxanQZbiaZzA9eAQfNdQBb1lzBIDRgVDL"], "avatar_icon_web_uri": "ad-site-i18n-sg/202110205d0d488b68ead898460bad74", "playable_url": "", "vast_moat_enabled": false, "is_aco": false, "ad_format": "SINGLE_VIDEO", "viewability_vast_url": null, "deeplink_type": "NORMAL", "identity_id": "7244085252222255106", "ad_name": "Video16974675946002_Heartwarming Atmosphere Pops with Piano Main(827850)_2023-10-16 07:46:35", "click_tracking_url": null, "page_id": null, "creative_authorized": true, "card_id": null, "ad_text": "airbyte", "tracking_pixel_id": 0, "display_name": "Airbyte", "creative_type": null, "profile_image_url": "https://p21-ad-sg.ibyteimg.com/obj/ad-site-i18n-sg/202110205d0d488b68ead898460bad74", "campaign_id": 1779923887578145, "fallback_type": "UNSET", "ad_id": 1779923894511665, "call_to_action_id": "7290567590173363202", "app_name": "", "create_time": "2023-10-16 14:48:30", "landing_page_url": "https://airbyte.com/?utm_source=tiktok&utm_medium=paid-social&utm_campaign=_tiktok_ads", "operation_status": "ENABLE", "landing_page_urls": null, "impression_tracking_url": null, "brand_safety_vast_url": null, "identity_type": "CUSTOMIZED_USER"}, "emitted_at": 1697523455072} -{"stream": "ads", "data": {"music_id": null, "optimization_event": null, "adgroup_id": 1779923881029666, "modify_time": "2023-10-16 14:53:29", "adgroup_name": "Ad group 20231016073545", "viewability_postbid_partner": "UNSET", "secondary_status": "AD_STATUS_BALANCE_EXCEED", "ad_texts": null, "is_new_structure": true, "deeplink": "", "video_id": "v10033g50000ckmkplrc77u30n4dkdb0", "advertiser_id": 7002238017842757633, "brand_safety_postbid_partner": "UNSET", "campaign_name": "UTM_PARAMSTraffic20231016173112", "image_ids": ["tos-alisg-p-0051c001-sg/oEaaNUsAlIQwDnBGmBLecBzDQGnACMA0Xgbfb5"], "avatar_icon_web_uri": "ad-site-i18n-sg/202110205d0d488b68ead898460bad74", "playable_url": "", "vast_moat_enabled": false, "is_aco": false, "ad_format": "SINGLE_VIDEO", "viewability_vast_url": null, "deeplink_type": "NORMAL", "identity_id": "7244085252222255106", "ad_name": "Video16974675945951_Whale, sea, electronica(859574)_2023-10-16 07:46:35", "click_tracking_url": null, "page_id": null, "creative_authorized": true, "card_id": null, "ad_text": "airbyte", "tracking_pixel_id": 0, "display_name": "Airbyte", "creative_type": null, "profile_image_url": "https://p21-ad-sg.ibyteimg.com/obj/ad-site-i18n-sg/202110205d0d488b68ead898460bad74", "campaign_id": 1779923887578145, "fallback_type": "UNSET", "ad_id": 1779923894506609, "call_to_action_id": "7290567668606716929", "app_name": "", "create_time": "2023-10-16 14:48:30", "landing_page_url": "https://airbyte.com/?utm_source=tiktok&utm_medium=paid-social&utm_campaign=_tiktok_ads", "operation_status": "ENABLE", "landing_page_urls": null, "impression_tracking_url": null, "brand_safety_vast_url": null, "identity_type": "CUSTOMIZED_USER"}, "emitted_at": 1697523455076} -{"stream": "ads", "data": {"music_id": null, "optimization_event": null, "adgroup_id": 1728545385226289, "modify_time": "2022-03-28 21:34:26", "adgroup_name": "AdGroupVadim", "viewability_postbid_partner": "UNSET", "secondary_status": "AD_STATUS_CAMPAIGN_DISABLE", "ad_texts": null, "is_new_structure": true, "deeplink": "", "video_id": "v10033g50000c90q1d3c77ub6e96fvo0", "advertiser_id": 7002238017842757633, "brand_safety_postbid_partner": "UNSET", "campaign_name": "CampaignVadimTraffic", "image_ids": ["v0201/7f371ff6f0764f8b8ef4f37d7b980d50"], "avatar_icon_web_uri": "ad-site-i18n-sg/202203285d0de5c114d0690a462bb6a4", "playable_url": "", "vast_moat_enabled": false, "is_aco": false, "ad_format": "SINGLE_VIDEO", "viewability_vast_url": null, "deeplink_type": "NORMAL", "identity_id": "7080121820963422209", "ad_name": "AdVadim-Optimized Version 3_202203281449_2022-03-28 05:03:44", "click_tracking_url": null, "page_id": null, "creative_authorized": false, "card_id": null, "ad_text": "Open-source\ndata integration for modern data teams", "display_name": "airbyte", "creative_type": null, "profile_image_url": "https://p21-ad-sg.ibyteimg.com/obj/ad-site-i18n-sg/202203285d0de5c114d0690a462bb6a4", "campaign_id": 1728545382536225, "fallback_type": "UNSET", "ad_id": 1728545390695442, "call_to_action_id": "7080120957230238722", "app_name": "", "create_time": "2022-03-28 12:09:09", "landing_page_url": "https://airbyte.com", "operation_status": "ENABLE", "landing_page_urls": null, "impression_tracking_url": null, "brand_safety_vast_url": null, "identity_type": "CUSTOMIZED_USER"}, "emitted_at": 1697523455079} +{"stream": "ads", "data": {"viewability_vast_url": null, "click_tracking_url": null, "brand_safety_postbid_partner": "UNSET", "playable_url": "", "music_id": null, "ad_texts": null, "creative_type": null, "tracking_pixel_id": 0, "campaign_name": "UTM_PARAMSTraffic20231016173112", "modify_time": "2023-10-16 14:53:29", "creative_authorized": true, "page_id": null, "identity_id": "7244085252222255106", "identity_type": "CUSTOMIZED_USER", "ad_format": "SINGLE_VIDEO", "viewability_postbid_partner": "UNSET", "adgroup_name": "Ad group 20231016073545", "optimization_event": null, "is_aco": false, "card_id": null, "campaign_id": 1779923887578145, "impression_tracking_url": null, "is_new_structure": true, "deeplink_type": "NORMAL", "fallback_type": "UNSET", "call_to_action_id": "7290567590173363202", "secondary_status": "AD_STATUS_CAMPAIGN_DISABLE", "avatar_icon_web_uri": "ad-site-i18n-sg/202110205d0d488b68ead898460bad74", "ad_text": "airbyte", "adgroup_id": 1779923881029666, "landing_page_urls": null, "ad_id": 1779923894511665, "brand_safety_vast_url": null, "image_ids": ["tos-alisg-p-0051c001-sg/oEnxmUxanQZbiaZzA9eAQfNdQBb1lzBIDRgVDL"], "create_time": "2023-10-16 14:48:30", "ad_name": "Video16974675946002_Heartwarming Atmosphere Pops with Piano Main(827850)_2023-10-16 07:46:35", "display_name": "Airbyte", "vast_moat_enabled": false, "video_id": "v10033g50000ckmkpnbc77ucmin3t88g", "advertiser_id": 7002238017842757633, "deeplink": "", "profile_image_url": "https://p21-ad-sg.ibyteimg.com/obj/ad-site-i18n-sg/202110205d0d488b68ead898460bad74", "operation_status": "ENABLE", "landing_page_url": "https://airbyte.com/?utm_source=tiktok&utm_medium=paid-social&utm_campaign=_tiktok_ads", "app_name": ""}, "emitted_at": 1697523455072} +{"stream": "ads", "data": {"viewability_vast_url": null, "click_tracking_url": null, "brand_safety_postbid_partner": "UNSET", "playable_url": "", "music_id": null, "ad_texts": null, "creative_type": null, "tracking_pixel_id": 0, "campaign_name": "UTM_PARAMSTraffic20231016173112", "modify_time": "2023-10-16 14:53:29", "creative_authorized": true, "page_id": null, "identity_id": "7244085252222255106", "identity_type": "CUSTOMIZED_USER", "ad_format": "SINGLE_VIDEO", "viewability_postbid_partner": "UNSET", "adgroup_name": "Ad group 20231016073545", "optimization_event": null, "is_aco": false, "card_id": null, "campaign_id": 1779923887578145, "impression_tracking_url": null, "is_new_structure": true, "deeplink_type": "NORMAL", "fallback_type": "UNSET", "call_to_action_id": "7290567668606716929", "secondary_status": "AD_STATUS_CAMPAIGN_DISABLE", "avatar_icon_web_uri": "ad-site-i18n-sg/202110205d0d488b68ead898460bad74", "ad_text": "airbyte", "adgroup_id": 1779923881029666, "landing_page_urls": null, "ad_id": 1779923894506609, "brand_safety_vast_url": null, "image_ids": ["tos-alisg-p-0051c001-sg/oEaaNUsAlIQwDnBGmBLecBzDQGnACMA0Xgbfb5"], "create_time": "2023-10-16 14:48:30", "ad_name": "Video16974675945951_Whale, sea, electronica(859574)_2023-10-16 07:46:35", "display_name": "Airbyte", "vast_moat_enabled": false, "video_id": "v10033g50000ckmkplrc77u30n4dkdb0", "advertiser_id": 7002238017842757633, "deeplink": "", "profile_image_url": "https://p21-ad-sg.ibyteimg.com/obj/ad-site-i18n-sg/202110205d0d488b68ead898460bad74", "operation_status": "ENABLE", "landing_page_url": "https://airbyte.com/?utm_source=tiktok&utm_medium=paid-social&utm_campaign=_tiktok_ads", "app_name": ""}, "emitted_at": 1697523455076} +{"stream": "ads", "data": {"viewability_vast_url": null, "click_tracking_url": null, "brand_safety_postbid_partner": "UNSET", "playable_url": "", "music_id": null, "ad_texts": null, "creative_type": null, "campaign_name": "CampaignVadimTraffic", "modify_time": "2023-10-17 08:50:32", "creative_authorized": false, "page_id": null, "identity_id": "7080121820963422209", "identity_type": "CUSTOMIZED_USER", "ad_format": "SINGLE_VIDEO", "viewability_postbid_partner": "UNSET", "adgroup_name": "AdGroupVadim", "optimization_event": null, "is_aco": false, "card_id": null, "campaign_id": 1728545382536225, "impression_tracking_url": null, "is_new_structure": true, "deeplink_type": "NORMAL", "fallback_type": "UNSET", "call_to_action_id": "7080120957230238722", "secondary_status": "AD_STATUS_CAMPAIGN_DISABLE", "avatar_icon_web_uri": "ad-site-i18n-sg/202203285d0de5c114d0690a462bb6a4", "ad_text": "Open-source\\ndata integration for modern data teams", "adgroup_id": 1728545385226289, "landing_page_urls": null, "ad_id": 1728545390695442, "brand_safety_vast_url": null, "image_ids": ["v0201/7f371ff6f0764f8b8ef4f37d7b980d50"], "create_time": "2022-03-28 12:09:09", "ad_name": "AdVadim-Optimized Version 3_202203281449_2022-03-28 05:03:44", "display_name": "airbyte", "vast_moat_enabled": false, "video_id": "v10033g50000c90q1d3c77ub6e96fvo0", "advertiser_id": 7002238017842757633, "deeplink": "", "profile_image_url": "https://p21-ad-sg.ibyteimg.com/obj/ad-site-i18n-sg/202203285d0de5c114d0690a462bb6a4", "operation_status": "ENABLE", "landing_page_url": "https://airbyte.com", "app_name": ""}, "emitted_at": 1697523455079} {"stream": "ad_groups", "data": {"campaign_id": 1709487018151954, "schedule_infos": null, "brand_safety_partner": null, "search_result_enabled": false, "keywords": null, "ios14_quota_type": "UNOCCUPIED", "dayparting": "111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111", "rf_estimated_cpr": null, "purchased_reach": null, "excluded_audience_ids": [], "excluded_custom_actions": [], "languages": [], "brand_safety_type": "NO_BRAND_SAFETY", "budget": 2000, "deep_bid_type": null, "scheduled_budget": 0, "age_groups": null, "video_download_disabled": false, "campaign_name": "Website Traffic20210830061428", "comment_disabled": false, "schedule_type": "SCHEDULE_FROM_NOW", "secondary_optimization_event": null, "creative_material_mode": "CUSTOM", "budget_mode": "BUDGET_MODE_DAY", "conversion_bid_price": 0, "pacing": "PACING_MODE_SMOOTH", "statistic_type": null, "device_price_ranges": [], "placement_type": "PLACEMENT_TYPE_NORMAL", "rf_purchased_type": null, "auto_targeting_enabled": false, "optimization_event": null, "rf_estimated_frequency": null, "operating_systems": [], "placements": ["PLACEMENT_TIKTOK", "PLACEMENT_TOPBUZZ", "PLACEMENT_HELO", "PLACEMENT_PANGLE"], "inventory_filter_enabled": false, "next_day_retention": null, "adgroup_app_profile_page_state": null, "included_custom_actions": [], "audience_ids": [], "category_id": 0, "schedule_end_time": "2031-08-28 03:20:28", "promotion_type": "WEBSITE", "optimization_goal": "CLICK", "create_time": "2021-08-30 03:25:04", "schedule_start_time": "2021-08-30 03:20:28", "purchased_impression": null, "delivery_mode": null, "share_disabled": false, "gender": "GENDER_UNLIMITED", "skip_learning_phase": 0, "app_download_url": null, "conversion_window": null, "operation_status": "ENABLE", "deep_cpa_bid": 0, "bid_price": 0, "advertiser_id": 7001035076276387841, "category_exclusion_ids": [], "actions": [], "adgroup_name": "Ad Group20210830062028", "bid_display_mode": "CPMV", "interest_keyword_ids": [], "modify_time": "2022-01-02 07:32:13", "bid_type": "BID_TYPE_NO_BID", "location_ids": [2017370], "pixel_id": null, "is_new_structure": true, "is_smart_performance_campaign": false, "frequency_schedule": null, "app_type": null, "interest_category_ids": [], "secondary_status": "ADVERTISER_ACCOUNT_PUNISH", "app_id": null, "feed_type": null, "frequency": null, "adgroup_id": 1709487015460898, "billing_event": "CPC", "network_types": [], "is_hfss": false, "device_model_ids": []}, "emitted_at": 1697523456240} {"stream": "ad_groups", "data": {"excluded_custom_actions": [], "bid_display_mode": "CPMV", "video_download_disabled": false, "deep_bid_type": null, "optimization_goal": "CLICK", "optimization_event": null, "skip_learning_phase": 0, "budget": 30, "promotion_type": "WEBSITE", "rf_estimated_frequency": null, "secondary_optimization_event": null, "placement_type": "PLACEMENT_TYPE_AUTOMATIC", "schedule_type": "SCHEDULE_FROM_NOW", "schedule_start_time": "2023-10-16 15:35:45", "placements": ["PLACEMENT_TIKTOK", "PLACEMENT_GLOBAL_APP_BUNDLE", "PLACEMENT_PANGLE"], "network_types": [], "auto_targeting_enabled": false, "campaign_name": "UTM_PARAMSTraffic20231016173112", "app_id": null, "is_smart_performance_campaign": false, "is_new_structure": true, "dayparting": "111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111", "budget_mode": "BUDGET_MODE_DYNAMIC_DAILY_BUDGET", "adgroup_id": 1779923881029666, "household_income": [], "operating_systems": [], "schedule_end_time": "2033-10-13 15:35:45", "category_exclusion_ids": [], "app_download_url": null, "scheduled_budget": 0, "delivery_mode": null, "ios14_quota_type": "UNOCCUPIED", "gender": "GENDER_UNLIMITED", "purchased_reach": null, "interest_category_ids": [], "included_custom_actions": [], "languages": [], "brand_safety_type": "NO_BRAND_SAFETY", "category_id": 0, "adgroup_app_profile_page_state": null, "frequency_schedule": null, "app_type": null, "statistic_type": null, "contextual_tag_ids": [], "operation_status": "ENABLE", "secondary_status": "ADGROUP_STATUS_BALANCE_EXCEED", "brand_safety_partner": null, "rf_estimated_cpr": null, "pacing": "PACING_MODE_SMOOTH", "next_day_retention": null, "create_time": "2023-10-16 14:48:28", "spending_power": "ALL", "feed_type": null, "interest_keyword_ids": [], "rf_purchased_type": null, "campaign_id": 1779923887578145, "adgroup_name": "Ad group 20231016073545", "purchased_impression": null, "is_hfss": false, "deep_cpa_bid": 0, "modify_time": "2023-10-16 21:47:26", "schedule_infos": null, "bid_type": "BID_TYPE_NO_BID", "keywords": null, "audience_ids": [], "bid_price": 0, "inventory_filter_enabled": false, "device_model_ids": [], "comment_disabled": false, "conversion_window": null, "share_disabled": false, "frequency": null, "conversion_bid_price": 0, "isp_ids": [], "age_groups": null, "location_ids": [6252001], "advertiser_id": 7002238017842757633, "zipcode_ids": [], "device_price_ranges": [], "pixel_id": null, "search_result_enabled": true, "actions": [], "excluded_audience_ids": [], "billing_event": "CPC", "creative_material_mode": "CUSTOM"}, "emitted_at": 1697523457614} {"stream": "ad_groups", "data": {"excluded_custom_actions": [], "bid_display_mode": "CPMV", "video_download_disabled": false, "deep_bid_type": null, "optimization_goal": "CLICK", "optimization_event": null, "skip_learning_phase": 0, "budget": 20, "promotion_type": "WEBSITE", "rf_estimated_frequency": null, "secondary_optimization_event": null, "placement_type": "PLACEMENT_TYPE_AUTOMATIC", "schedule_type": "SCHEDULE_FROM_NOW", "schedule_start_time": "2022-03-28 13:02:23", "placements": ["PLACEMENT_TIKTOK", "PLACEMENT_TOPBUZZ", "PLACEMENT_PANGLE"], "network_types": [], "auto_targeting_enabled": false, "campaign_name": "CampaignVadimTraffic", "app_id": null, "is_smart_performance_campaign": false, "is_new_structure": true, "dayparting": "111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111", "budget_mode": "BUDGET_MODE_DAY", "adgroup_id": 1728545385226289, "operating_systems": [], "schedule_end_time": "2032-03-25 13:02:23", "category_exclusion_ids": [], "app_download_url": null, "scheduled_budget": 0, "delivery_mode": null, "ios14_quota_type": "UNOCCUPIED", "gender": "GENDER_UNLIMITED", "purchased_reach": null, "interest_category_ids": [15], "included_custom_actions": [], "languages": [], "brand_safety_type": "NO_BRAND_SAFETY", "category_id": 0, "adgroup_app_profile_page_state": null, "frequency_schedule": null, "app_type": null, "statistic_type": null, "operation_status": "ENABLE", "secondary_status": "ADGROUP_STATUS_CAMPAIGN_DISABLE", "brand_safety_partner": null, "rf_estimated_cpr": null, "pacing": "PACING_MODE_SMOOTH", "next_day_retention": null, "create_time": "2022-03-28 12:09:07", "feed_type": null, "interest_keyword_ids": [], "rf_purchased_type": null, "campaign_id": 1728545382536225, "adgroup_name": "AdGroupVadim", "purchased_impression": null, "is_hfss": false, "deep_cpa_bid": 0, "modify_time": "2022-03-31 08:13:30", "schedule_infos": null, "bid_type": "BID_TYPE_NO_BID", "keywords": null, "audience_ids": [], "bid_price": 0, "inventory_filter_enabled": false, "device_model_ids": [], "comment_disabled": false, "conversion_window": null, "share_disabled": false, "frequency": null, "conversion_bid_price": 0, "age_groups": ["AGE_25_34", "AGE_35_44"], "location_ids": [6252001], "advertiser_id": 7002238017842757633, "device_price_ranges": [], "pixel_id": null, "search_result_enabled": false, "actions": [], "excluded_audience_ids": [], "billing_event": "CPC", "creative_material_mode": "CUSTOM"}, "emitted_at": 1697523457617} From 49b7cbd5abf4e1eaaed82573e58c5ae32652491b Mon Sep 17 00:00:00 2001 From: Denys Davydov Date: Wed, 18 Oct 2023 16:03:49 +0300 Subject: [PATCH 4/6] upd expected records --- .../integration_tests/expected_records.jsonl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airbyte-integrations/connectors/source-tiktok-marketing/integration_tests/expected_records.jsonl b/airbyte-integrations/connectors/source-tiktok-marketing/integration_tests/expected_records.jsonl index 726e44ef88e3..a7298c8d08c2 100644 --- a/airbyte-integrations/connectors/source-tiktok-marketing/integration_tests/expected_records.jsonl +++ b/airbyte-integrations/connectors/source-tiktok-marketing/integration_tests/expected_records.jsonl @@ -1,7 +1,7 @@ {"stream": "advertisers", "data": {"cellphone_number": "+18023****63", "promotion_center_city": null, "role": "ROLE_ADVERTISER", "currency": "RUB", "display_timezone": "Europe/Moscow", "address": null, "balance": 0, "language": "", "name": "Airbyte0827", "promotion_center_province": null, "license_city": null, "status": "STATUS_LIMIT", "advertiser_id": 7001035076276387841, "email": "i***************@**********", "create_time": 1630055520, "description": null, "brand": null, "telephone_number": "+18023****63", "advertiser_account_type": "AUCTION", "license_url": null, "contacter": "Ai***te", "country": "RU", "industry": "291905", "license_no": null, "license_province": null, "timezone": "Europe/Moscow", "promotion_area": "0", "company": "Airbyte", "rejection_reason": "1:Dear customer,\nWe've detected that your account has not been logged into for a long period of time, which could cause a security risk. In order to improve platform security, your account has been temporarily suspended. For further information or if you have any questions, please submit a ticket under \"Account Review\" in the Business Support Center to raise an appeal.\nThank you for your understanding.\n,endtime:2031-12-31 07:32:13"}, "emitted_at": 1697523452470} {"stream": "ads", "data": {"viewability_vast_url": null, "click_tracking_url": null, "brand_safety_postbid_partner": "UNSET", "playable_url": "", "music_id": null, "ad_texts": null, "creative_type": null, "tracking_pixel_id": 0, "campaign_name": "UTM_PARAMSTraffic20231016173112", "modify_time": "2023-10-16 14:53:29", "creative_authorized": true, "page_id": null, "identity_id": "7244085252222255106", "identity_type": "CUSTOMIZED_USER", "ad_format": "SINGLE_VIDEO", "viewability_postbid_partner": "UNSET", "adgroup_name": "Ad group 20231016073545", "optimization_event": null, "is_aco": false, "card_id": null, "campaign_id": 1779923887578145, "impression_tracking_url": null, "is_new_structure": true, "deeplink_type": "NORMAL", "fallback_type": "UNSET", "call_to_action_id": "7290567590173363202", "secondary_status": "AD_STATUS_CAMPAIGN_DISABLE", "avatar_icon_web_uri": "ad-site-i18n-sg/202110205d0d488b68ead898460bad74", "ad_text": "airbyte", "adgroup_id": 1779923881029666, "landing_page_urls": null, "ad_id": 1779923894511665, "brand_safety_vast_url": null, "image_ids": ["tos-alisg-p-0051c001-sg/oEnxmUxanQZbiaZzA9eAQfNdQBb1lzBIDRgVDL"], "create_time": "2023-10-16 14:48:30", "ad_name": "Video16974675946002_Heartwarming Atmosphere Pops with Piano Main(827850)_2023-10-16 07:46:35", "display_name": "Airbyte", "vast_moat_enabled": false, "video_id": "v10033g50000ckmkpnbc77ucmin3t88g", "advertiser_id": 7002238017842757633, "deeplink": "", "profile_image_url": "https://p21-ad-sg.ibyteimg.com/obj/ad-site-i18n-sg/202110205d0d488b68ead898460bad74", "operation_status": "ENABLE", "landing_page_url": "https://airbyte.com/?utm_source=tiktok&utm_medium=paid-social&utm_campaign=_tiktok_ads", "app_name": ""}, "emitted_at": 1697523455072} {"stream": "ads", "data": {"viewability_vast_url": null, "click_tracking_url": null, "brand_safety_postbid_partner": "UNSET", "playable_url": "", "music_id": null, "ad_texts": null, "creative_type": null, "tracking_pixel_id": 0, "campaign_name": "UTM_PARAMSTraffic20231016173112", "modify_time": "2023-10-16 14:53:29", "creative_authorized": true, "page_id": null, "identity_id": "7244085252222255106", "identity_type": "CUSTOMIZED_USER", "ad_format": "SINGLE_VIDEO", "viewability_postbid_partner": "UNSET", "adgroup_name": "Ad group 20231016073545", "optimization_event": null, "is_aco": false, "card_id": null, "campaign_id": 1779923887578145, "impression_tracking_url": null, "is_new_structure": true, "deeplink_type": "NORMAL", "fallback_type": "UNSET", "call_to_action_id": "7290567668606716929", "secondary_status": "AD_STATUS_CAMPAIGN_DISABLE", "avatar_icon_web_uri": "ad-site-i18n-sg/202110205d0d488b68ead898460bad74", "ad_text": "airbyte", "adgroup_id": 1779923881029666, "landing_page_urls": null, "ad_id": 1779923894506609, "brand_safety_vast_url": null, "image_ids": ["tos-alisg-p-0051c001-sg/oEaaNUsAlIQwDnBGmBLecBzDQGnACMA0Xgbfb5"], "create_time": "2023-10-16 14:48:30", "ad_name": "Video16974675945951_Whale, sea, electronica(859574)_2023-10-16 07:46:35", "display_name": "Airbyte", "vast_moat_enabled": false, "video_id": "v10033g50000ckmkplrc77u30n4dkdb0", "advertiser_id": 7002238017842757633, "deeplink": "", "profile_image_url": "https://p21-ad-sg.ibyteimg.com/obj/ad-site-i18n-sg/202110205d0d488b68ead898460bad74", "operation_status": "ENABLE", "landing_page_url": "https://airbyte.com/?utm_source=tiktok&utm_medium=paid-social&utm_campaign=_tiktok_ads", "app_name": ""}, "emitted_at": 1697523455076} -{"stream": "ads", "data": {"viewability_vast_url": null, "click_tracking_url": null, "brand_safety_postbid_partner": "UNSET", "playable_url": "", "music_id": null, "ad_texts": null, "creative_type": null, "campaign_name": "CampaignVadimTraffic", "modify_time": "2023-10-17 08:50:32", "creative_authorized": false, "page_id": null, "identity_id": "7080121820963422209", "identity_type": "CUSTOMIZED_USER", "ad_format": "SINGLE_VIDEO", "viewability_postbid_partner": "UNSET", "adgroup_name": "AdGroupVadim", "optimization_event": null, "is_aco": false, "card_id": null, "campaign_id": 1728545382536225, "impression_tracking_url": null, "is_new_structure": true, "deeplink_type": "NORMAL", "fallback_type": "UNSET", "call_to_action_id": "7080120957230238722", "secondary_status": "AD_STATUS_CAMPAIGN_DISABLE", "avatar_icon_web_uri": "ad-site-i18n-sg/202203285d0de5c114d0690a462bb6a4", "ad_text": "Open-source\\ndata integration for modern data teams", "adgroup_id": 1728545385226289, "landing_page_urls": null, "ad_id": 1728545390695442, "brand_safety_vast_url": null, "image_ids": ["v0201/7f371ff6f0764f8b8ef4f37d7b980d50"], "create_time": "2022-03-28 12:09:09", "ad_name": "AdVadim-Optimized Version 3_202203281449_2022-03-28 05:03:44", "display_name": "airbyte", "vast_moat_enabled": false, "video_id": "v10033g50000c90q1d3c77ub6e96fvo0", "advertiser_id": 7002238017842757633, "deeplink": "", "profile_image_url": "https://p21-ad-sg.ibyteimg.com/obj/ad-site-i18n-sg/202203285d0de5c114d0690a462bb6a4", "operation_status": "ENABLE", "landing_page_url": "https://airbyte.com", "app_name": ""}, "emitted_at": 1697523455079} +{"stream": "ads", "data": {"viewability_vast_url": null, "click_tracking_url": null, "brand_safety_postbid_partner": "UNSET", "playable_url": "", "music_id": null, "ad_texts": null, "creative_type": null, "campaign_name": "CampaignVadimTraffic", "modify_time": "2023-10-17 08:50:32", "creative_authorized": false, "page_id": null, "identity_id": "7080121820963422209", "identity_type": "CUSTOMIZED_USER", "ad_format": "SINGLE_VIDEO", "viewability_postbid_partner": "UNSET", "adgroup_name": "AdGroupVadim", "optimization_event": null, "is_aco": false, "card_id": null, "campaign_id": 1728545382536225, "impression_tracking_url": null, "is_new_structure": true, "deeplink_type": "NORMAL", "fallback_type": "UNSET", "call_to_action_id": "7080120957230238722", "secondary_status": "AD_STATUS_CAMPAIGN_DISABLE", "avatar_icon_web_uri": "ad-site-i18n-sg/202203285d0de5c114d0690a462bb6a4", "ad_text": "Open-source\ndata integration for modern data teams", "adgroup_id": 1728545385226289, "landing_page_urls": null, "ad_id": 1728545390695442, "brand_safety_vast_url": null, "image_ids": ["v0201/7f371ff6f0764f8b8ef4f37d7b980d50"], "create_time": "2022-03-28 12:09:09", "ad_name": "AdVadim-Optimized Version 3_202203281449_2022-03-28 05:03:44", "display_name": "airbyte", "vast_moat_enabled": false, "video_id": "v10033g50000c90q1d3c77ub6e96fvo0", "advertiser_id": 7002238017842757633, "deeplink": "", "profile_image_url": "https://p21-ad-sg.ibyteimg.com/obj/ad-site-i18n-sg/202203285d0de5c114d0690a462bb6a4", "operation_status": "ENABLE", "landing_page_url": "https://airbyte.com", "app_name": ""}, "emitted_at": 1697523455079} {"stream": "ad_groups", "data": {"campaign_id": 1709487018151954, "schedule_infos": null, "brand_safety_partner": null, "search_result_enabled": false, "keywords": null, "ios14_quota_type": "UNOCCUPIED", "dayparting": "111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111", "rf_estimated_cpr": null, "purchased_reach": null, "excluded_audience_ids": [], "excluded_custom_actions": [], "languages": [], "brand_safety_type": "NO_BRAND_SAFETY", "budget": 2000, "deep_bid_type": null, "scheduled_budget": 0, "age_groups": null, "video_download_disabled": false, "campaign_name": "Website Traffic20210830061428", "comment_disabled": false, "schedule_type": "SCHEDULE_FROM_NOW", "secondary_optimization_event": null, "creative_material_mode": "CUSTOM", "budget_mode": "BUDGET_MODE_DAY", "conversion_bid_price": 0, "pacing": "PACING_MODE_SMOOTH", "statistic_type": null, "device_price_ranges": [], "placement_type": "PLACEMENT_TYPE_NORMAL", "rf_purchased_type": null, "auto_targeting_enabled": false, "optimization_event": null, "rf_estimated_frequency": null, "operating_systems": [], "placements": ["PLACEMENT_TIKTOK", "PLACEMENT_TOPBUZZ", "PLACEMENT_HELO", "PLACEMENT_PANGLE"], "inventory_filter_enabled": false, "next_day_retention": null, "adgroup_app_profile_page_state": null, "included_custom_actions": [], "audience_ids": [], "category_id": 0, "schedule_end_time": "2031-08-28 03:20:28", "promotion_type": "WEBSITE", "optimization_goal": "CLICK", "create_time": "2021-08-30 03:25:04", "schedule_start_time": "2021-08-30 03:20:28", "purchased_impression": null, "delivery_mode": null, "share_disabled": false, "gender": "GENDER_UNLIMITED", "skip_learning_phase": 0, "app_download_url": null, "conversion_window": null, "operation_status": "ENABLE", "deep_cpa_bid": 0, "bid_price": 0, "advertiser_id": 7001035076276387841, "category_exclusion_ids": [], "actions": [], "adgroup_name": "Ad Group20210830062028", "bid_display_mode": "CPMV", "interest_keyword_ids": [], "modify_time": "2022-01-02 07:32:13", "bid_type": "BID_TYPE_NO_BID", "location_ids": [2017370], "pixel_id": null, "is_new_structure": true, "is_smart_performance_campaign": false, "frequency_schedule": null, "app_type": null, "interest_category_ids": [], "secondary_status": "ADVERTISER_ACCOUNT_PUNISH", "app_id": null, "feed_type": null, "frequency": null, "adgroup_id": 1709487015460898, "billing_event": "CPC", "network_types": [], "is_hfss": false, "device_model_ids": []}, "emitted_at": 1697523456240} {"stream": "ad_groups", "data": {"excluded_custom_actions": [], "bid_display_mode": "CPMV", "video_download_disabled": false, "deep_bid_type": null, "optimization_goal": "CLICK", "optimization_event": null, "skip_learning_phase": 0, "budget": 30, "promotion_type": "WEBSITE", "rf_estimated_frequency": null, "secondary_optimization_event": null, "placement_type": "PLACEMENT_TYPE_AUTOMATIC", "schedule_type": "SCHEDULE_FROM_NOW", "schedule_start_time": "2023-10-16 15:35:45", "placements": ["PLACEMENT_TIKTOK", "PLACEMENT_GLOBAL_APP_BUNDLE", "PLACEMENT_PANGLE"], "network_types": [], "auto_targeting_enabled": false, "campaign_name": "UTM_PARAMSTraffic20231016173112", "app_id": null, "is_smart_performance_campaign": false, "is_new_structure": true, "dayparting": "111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111", "budget_mode": "BUDGET_MODE_DYNAMIC_DAILY_BUDGET", "adgroup_id": 1779923881029666, "household_income": [], "operating_systems": [], "schedule_end_time": "2033-10-13 15:35:45", "category_exclusion_ids": [], "app_download_url": null, "scheduled_budget": 0, "delivery_mode": null, "ios14_quota_type": "UNOCCUPIED", "gender": "GENDER_UNLIMITED", "purchased_reach": null, "interest_category_ids": [], "included_custom_actions": [], "languages": [], "brand_safety_type": "NO_BRAND_SAFETY", "category_id": 0, "adgroup_app_profile_page_state": null, "frequency_schedule": null, "app_type": null, "statistic_type": null, "contextual_tag_ids": [], "operation_status": "ENABLE", "secondary_status": "ADGROUP_STATUS_BALANCE_EXCEED", "brand_safety_partner": null, "rf_estimated_cpr": null, "pacing": "PACING_MODE_SMOOTH", "next_day_retention": null, "create_time": "2023-10-16 14:48:28", "spending_power": "ALL", "feed_type": null, "interest_keyword_ids": [], "rf_purchased_type": null, "campaign_id": 1779923887578145, "adgroup_name": "Ad group 20231016073545", "purchased_impression": null, "is_hfss": false, "deep_cpa_bid": 0, "modify_time": "2023-10-16 21:47:26", "schedule_infos": null, "bid_type": "BID_TYPE_NO_BID", "keywords": null, "audience_ids": [], "bid_price": 0, "inventory_filter_enabled": false, "device_model_ids": [], "comment_disabled": false, "conversion_window": null, "share_disabled": false, "frequency": null, "conversion_bid_price": 0, "isp_ids": [], "age_groups": null, "location_ids": [6252001], "advertiser_id": 7002238017842757633, "zipcode_ids": [], "device_price_ranges": [], "pixel_id": null, "search_result_enabled": true, "actions": [], "excluded_audience_ids": [], "billing_event": "CPC", "creative_material_mode": "CUSTOM"}, "emitted_at": 1697523457614} {"stream": "ad_groups", "data": {"excluded_custom_actions": [], "bid_display_mode": "CPMV", "video_download_disabled": false, "deep_bid_type": null, "optimization_goal": "CLICK", "optimization_event": null, "skip_learning_phase": 0, "budget": 20, "promotion_type": "WEBSITE", "rf_estimated_frequency": null, "secondary_optimization_event": null, "placement_type": "PLACEMENT_TYPE_AUTOMATIC", "schedule_type": "SCHEDULE_FROM_NOW", "schedule_start_time": "2022-03-28 13:02:23", "placements": ["PLACEMENT_TIKTOK", "PLACEMENT_TOPBUZZ", "PLACEMENT_PANGLE"], "network_types": [], "auto_targeting_enabled": false, "campaign_name": "CampaignVadimTraffic", "app_id": null, "is_smart_performance_campaign": false, "is_new_structure": true, "dayparting": "111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111", "budget_mode": "BUDGET_MODE_DAY", "adgroup_id": 1728545385226289, "operating_systems": [], "schedule_end_time": "2032-03-25 13:02:23", "category_exclusion_ids": [], "app_download_url": null, "scheduled_budget": 0, "delivery_mode": null, "ios14_quota_type": "UNOCCUPIED", "gender": "GENDER_UNLIMITED", "purchased_reach": null, "interest_category_ids": [15], "included_custom_actions": [], "languages": [], "brand_safety_type": "NO_BRAND_SAFETY", "category_id": 0, "adgroup_app_profile_page_state": null, "frequency_schedule": null, "app_type": null, "statistic_type": null, "operation_status": "ENABLE", "secondary_status": "ADGROUP_STATUS_CAMPAIGN_DISABLE", "brand_safety_partner": null, "rf_estimated_cpr": null, "pacing": "PACING_MODE_SMOOTH", "next_day_retention": null, "create_time": "2022-03-28 12:09:07", "feed_type": null, "interest_keyword_ids": [], "rf_purchased_type": null, "campaign_id": 1728545382536225, "adgroup_name": "AdGroupVadim", "purchased_impression": null, "is_hfss": false, "deep_cpa_bid": 0, "modify_time": "2022-03-31 08:13:30", "schedule_infos": null, "bid_type": "BID_TYPE_NO_BID", "keywords": null, "audience_ids": [], "bid_price": 0, "inventory_filter_enabled": false, "device_model_ids": [], "comment_disabled": false, "conversion_window": null, "share_disabled": false, "frequency": null, "conversion_bid_price": 0, "age_groups": ["AGE_25_34", "AGE_35_44"], "location_ids": [6252001], "advertiser_id": 7002238017842757633, "device_price_ranges": [], "pixel_id": null, "search_result_enabled": false, "actions": [], "excluded_audience_ids": [], "billing_event": "CPC", "creative_material_mode": "CUSTOM"}, "emitted_at": 1697523457617} From 12b08bd290ad0264579238a8a6655f3530780145 Mon Sep 17 00:00:00 2001 From: Denys Davydov Date: Wed, 18 Oct 2023 16:39:36 +0300 Subject: [PATCH 5/6] one more update of expected records --- .../integration_tests/expected_records.jsonl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-tiktok-marketing/integration_tests/expected_records.jsonl b/airbyte-integrations/connectors/source-tiktok-marketing/integration_tests/expected_records.jsonl index a7298c8d08c2..fc10ce81b05f 100644 --- a/airbyte-integrations/connectors/source-tiktok-marketing/integration_tests/expected_records.jsonl +++ b/airbyte-integrations/connectors/source-tiktok-marketing/integration_tests/expected_records.jsonl @@ -2,9 +2,9 @@ {"stream": "ads", "data": {"viewability_vast_url": null, "click_tracking_url": null, "brand_safety_postbid_partner": "UNSET", "playable_url": "", "music_id": null, "ad_texts": null, "creative_type": null, "tracking_pixel_id": 0, "campaign_name": "UTM_PARAMSTraffic20231016173112", "modify_time": "2023-10-16 14:53:29", "creative_authorized": true, "page_id": null, "identity_id": "7244085252222255106", "identity_type": "CUSTOMIZED_USER", "ad_format": "SINGLE_VIDEO", "viewability_postbid_partner": "UNSET", "adgroup_name": "Ad group 20231016073545", "optimization_event": null, "is_aco": false, "card_id": null, "campaign_id": 1779923887578145, "impression_tracking_url": null, "is_new_structure": true, "deeplink_type": "NORMAL", "fallback_type": "UNSET", "call_to_action_id": "7290567590173363202", "secondary_status": "AD_STATUS_CAMPAIGN_DISABLE", "avatar_icon_web_uri": "ad-site-i18n-sg/202110205d0d488b68ead898460bad74", "ad_text": "airbyte", "adgroup_id": 1779923881029666, "landing_page_urls": null, "ad_id": 1779923894511665, "brand_safety_vast_url": null, "image_ids": ["tos-alisg-p-0051c001-sg/oEnxmUxanQZbiaZzA9eAQfNdQBb1lzBIDRgVDL"], "create_time": "2023-10-16 14:48:30", "ad_name": "Video16974675946002_Heartwarming Atmosphere Pops with Piano Main(827850)_2023-10-16 07:46:35", "display_name": "Airbyte", "vast_moat_enabled": false, "video_id": "v10033g50000ckmkpnbc77ucmin3t88g", "advertiser_id": 7002238017842757633, "deeplink": "", "profile_image_url": "https://p21-ad-sg.ibyteimg.com/obj/ad-site-i18n-sg/202110205d0d488b68ead898460bad74", "operation_status": "ENABLE", "landing_page_url": "https://airbyte.com/?utm_source=tiktok&utm_medium=paid-social&utm_campaign=_tiktok_ads", "app_name": ""}, "emitted_at": 1697523455072} {"stream": "ads", "data": {"viewability_vast_url": null, "click_tracking_url": null, "brand_safety_postbid_partner": "UNSET", "playable_url": "", "music_id": null, "ad_texts": null, "creative_type": null, "tracking_pixel_id": 0, "campaign_name": "UTM_PARAMSTraffic20231016173112", "modify_time": "2023-10-16 14:53:29", "creative_authorized": true, "page_id": null, "identity_id": "7244085252222255106", "identity_type": "CUSTOMIZED_USER", "ad_format": "SINGLE_VIDEO", "viewability_postbid_partner": "UNSET", "adgroup_name": "Ad group 20231016073545", "optimization_event": null, "is_aco": false, "card_id": null, "campaign_id": 1779923887578145, "impression_tracking_url": null, "is_new_structure": true, "deeplink_type": "NORMAL", "fallback_type": "UNSET", "call_to_action_id": "7290567668606716929", "secondary_status": "AD_STATUS_CAMPAIGN_DISABLE", "avatar_icon_web_uri": "ad-site-i18n-sg/202110205d0d488b68ead898460bad74", "ad_text": "airbyte", "adgroup_id": 1779923881029666, "landing_page_urls": null, "ad_id": 1779923894506609, "brand_safety_vast_url": null, "image_ids": ["tos-alisg-p-0051c001-sg/oEaaNUsAlIQwDnBGmBLecBzDQGnACMA0Xgbfb5"], "create_time": "2023-10-16 14:48:30", "ad_name": "Video16974675945951_Whale, sea, electronica(859574)_2023-10-16 07:46:35", "display_name": "Airbyte", "vast_moat_enabled": false, "video_id": "v10033g50000ckmkplrc77u30n4dkdb0", "advertiser_id": 7002238017842757633, "deeplink": "", "profile_image_url": "https://p21-ad-sg.ibyteimg.com/obj/ad-site-i18n-sg/202110205d0d488b68ead898460bad74", "operation_status": "ENABLE", "landing_page_url": "https://airbyte.com/?utm_source=tiktok&utm_medium=paid-social&utm_campaign=_tiktok_ads", "app_name": ""}, "emitted_at": 1697523455076} {"stream": "ads", "data": {"viewability_vast_url": null, "click_tracking_url": null, "brand_safety_postbid_partner": "UNSET", "playable_url": "", "music_id": null, "ad_texts": null, "creative_type": null, "campaign_name": "CampaignVadimTraffic", "modify_time": "2023-10-17 08:50:32", "creative_authorized": false, "page_id": null, "identity_id": "7080121820963422209", "identity_type": "CUSTOMIZED_USER", "ad_format": "SINGLE_VIDEO", "viewability_postbid_partner": "UNSET", "adgroup_name": "AdGroupVadim", "optimization_event": null, "is_aco": false, "card_id": null, "campaign_id": 1728545382536225, "impression_tracking_url": null, "is_new_structure": true, "deeplink_type": "NORMAL", "fallback_type": "UNSET", "call_to_action_id": "7080120957230238722", "secondary_status": "AD_STATUS_CAMPAIGN_DISABLE", "avatar_icon_web_uri": "ad-site-i18n-sg/202203285d0de5c114d0690a462bb6a4", "ad_text": "Open-source\ndata integration for modern data teams", "adgroup_id": 1728545385226289, "landing_page_urls": null, "ad_id": 1728545390695442, "brand_safety_vast_url": null, "image_ids": ["v0201/7f371ff6f0764f8b8ef4f37d7b980d50"], "create_time": "2022-03-28 12:09:09", "ad_name": "AdVadim-Optimized Version 3_202203281449_2022-03-28 05:03:44", "display_name": "airbyte", "vast_moat_enabled": false, "video_id": "v10033g50000c90q1d3c77ub6e96fvo0", "advertiser_id": 7002238017842757633, "deeplink": "", "profile_image_url": "https://p21-ad-sg.ibyteimg.com/obj/ad-site-i18n-sg/202203285d0de5c114d0690a462bb6a4", "operation_status": "ENABLE", "landing_page_url": "https://airbyte.com", "app_name": ""}, "emitted_at": 1697523455079} -{"stream": "ad_groups", "data": {"campaign_id": 1709487018151954, "schedule_infos": null, "brand_safety_partner": null, "search_result_enabled": false, "keywords": null, "ios14_quota_type": "UNOCCUPIED", "dayparting": "111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111", "rf_estimated_cpr": null, "purchased_reach": null, "excluded_audience_ids": [], "excluded_custom_actions": [], "languages": [], "brand_safety_type": "NO_BRAND_SAFETY", "budget": 2000, "deep_bid_type": null, "scheduled_budget": 0, "age_groups": null, "video_download_disabled": false, "campaign_name": "Website Traffic20210830061428", "comment_disabled": false, "schedule_type": "SCHEDULE_FROM_NOW", "secondary_optimization_event": null, "creative_material_mode": "CUSTOM", "budget_mode": "BUDGET_MODE_DAY", "conversion_bid_price": 0, "pacing": "PACING_MODE_SMOOTH", "statistic_type": null, "device_price_ranges": [], "placement_type": "PLACEMENT_TYPE_NORMAL", "rf_purchased_type": null, "auto_targeting_enabled": false, "optimization_event": null, "rf_estimated_frequency": null, "operating_systems": [], "placements": ["PLACEMENT_TIKTOK", "PLACEMENT_TOPBUZZ", "PLACEMENT_HELO", "PLACEMENT_PANGLE"], "inventory_filter_enabled": false, "next_day_retention": null, "adgroup_app_profile_page_state": null, "included_custom_actions": [], "audience_ids": [], "category_id": 0, "schedule_end_time": "2031-08-28 03:20:28", "promotion_type": "WEBSITE", "optimization_goal": "CLICK", "create_time": "2021-08-30 03:25:04", "schedule_start_time": "2021-08-30 03:20:28", "purchased_impression": null, "delivery_mode": null, "share_disabled": false, "gender": "GENDER_UNLIMITED", "skip_learning_phase": 0, "app_download_url": null, "conversion_window": null, "operation_status": "ENABLE", "deep_cpa_bid": 0, "bid_price": 0, "advertiser_id": 7001035076276387841, "category_exclusion_ids": [], "actions": [], "adgroup_name": "Ad Group20210830062028", "bid_display_mode": "CPMV", "interest_keyword_ids": [], "modify_time": "2022-01-02 07:32:13", "bid_type": "BID_TYPE_NO_BID", "location_ids": [2017370], "pixel_id": null, "is_new_structure": true, "is_smart_performance_campaign": false, "frequency_schedule": null, "app_type": null, "interest_category_ids": [], "secondary_status": "ADVERTISER_ACCOUNT_PUNISH", "app_id": null, "feed_type": null, "frequency": null, "adgroup_id": 1709487015460898, "billing_event": "CPC", "network_types": [], "is_hfss": false, "device_model_ids": []}, "emitted_at": 1697523456240} -{"stream": "ad_groups", "data": {"excluded_custom_actions": [], "bid_display_mode": "CPMV", "video_download_disabled": false, "deep_bid_type": null, "optimization_goal": "CLICK", "optimization_event": null, "skip_learning_phase": 0, "budget": 30, "promotion_type": "WEBSITE", "rf_estimated_frequency": null, "secondary_optimization_event": null, "placement_type": "PLACEMENT_TYPE_AUTOMATIC", "schedule_type": "SCHEDULE_FROM_NOW", "schedule_start_time": "2023-10-16 15:35:45", "placements": ["PLACEMENT_TIKTOK", "PLACEMENT_GLOBAL_APP_BUNDLE", "PLACEMENT_PANGLE"], "network_types": [], "auto_targeting_enabled": false, "campaign_name": "UTM_PARAMSTraffic20231016173112", "app_id": null, "is_smart_performance_campaign": false, "is_new_structure": true, "dayparting": "111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111", "budget_mode": "BUDGET_MODE_DYNAMIC_DAILY_BUDGET", "adgroup_id": 1779923881029666, "household_income": [], "operating_systems": [], "schedule_end_time": "2033-10-13 15:35:45", "category_exclusion_ids": [], "app_download_url": null, "scheduled_budget": 0, "delivery_mode": null, "ios14_quota_type": "UNOCCUPIED", "gender": "GENDER_UNLIMITED", "purchased_reach": null, "interest_category_ids": [], "included_custom_actions": [], "languages": [], "brand_safety_type": "NO_BRAND_SAFETY", "category_id": 0, "adgroup_app_profile_page_state": null, "frequency_schedule": null, "app_type": null, "statistic_type": null, "contextual_tag_ids": [], "operation_status": "ENABLE", "secondary_status": "ADGROUP_STATUS_BALANCE_EXCEED", "brand_safety_partner": null, "rf_estimated_cpr": null, "pacing": "PACING_MODE_SMOOTH", "next_day_retention": null, "create_time": "2023-10-16 14:48:28", "spending_power": "ALL", "feed_type": null, "interest_keyword_ids": [], "rf_purchased_type": null, "campaign_id": 1779923887578145, "adgroup_name": "Ad group 20231016073545", "purchased_impression": null, "is_hfss": false, "deep_cpa_bid": 0, "modify_time": "2023-10-16 21:47:26", "schedule_infos": null, "bid_type": "BID_TYPE_NO_BID", "keywords": null, "audience_ids": [], "bid_price": 0, "inventory_filter_enabled": false, "device_model_ids": [], "comment_disabled": false, "conversion_window": null, "share_disabled": false, "frequency": null, "conversion_bid_price": 0, "isp_ids": [], "age_groups": null, "location_ids": [6252001], "advertiser_id": 7002238017842757633, "zipcode_ids": [], "device_price_ranges": [], "pixel_id": null, "search_result_enabled": true, "actions": [], "excluded_audience_ids": [], "billing_event": "CPC", "creative_material_mode": "CUSTOM"}, "emitted_at": 1697523457614} -{"stream": "ad_groups", "data": {"excluded_custom_actions": [], "bid_display_mode": "CPMV", "video_download_disabled": false, "deep_bid_type": null, "optimization_goal": "CLICK", "optimization_event": null, "skip_learning_phase": 0, "budget": 20, "promotion_type": "WEBSITE", "rf_estimated_frequency": null, "secondary_optimization_event": null, "placement_type": "PLACEMENT_TYPE_AUTOMATIC", "schedule_type": "SCHEDULE_FROM_NOW", "schedule_start_time": "2022-03-28 13:02:23", "placements": ["PLACEMENT_TIKTOK", "PLACEMENT_TOPBUZZ", "PLACEMENT_PANGLE"], "network_types": [], "auto_targeting_enabled": false, "campaign_name": "CampaignVadimTraffic", "app_id": null, "is_smart_performance_campaign": false, "is_new_structure": true, "dayparting": "111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111", "budget_mode": "BUDGET_MODE_DAY", "adgroup_id": 1728545385226289, "operating_systems": [], "schedule_end_time": "2032-03-25 13:02:23", "category_exclusion_ids": [], "app_download_url": null, "scheduled_budget": 0, "delivery_mode": null, "ios14_quota_type": "UNOCCUPIED", "gender": "GENDER_UNLIMITED", "purchased_reach": null, "interest_category_ids": [15], "included_custom_actions": [], "languages": [], "brand_safety_type": "NO_BRAND_SAFETY", "category_id": 0, "adgroup_app_profile_page_state": null, "frequency_schedule": null, "app_type": null, "statistic_type": null, "operation_status": "ENABLE", "secondary_status": "ADGROUP_STATUS_CAMPAIGN_DISABLE", "brand_safety_partner": null, "rf_estimated_cpr": null, "pacing": "PACING_MODE_SMOOTH", "next_day_retention": null, "create_time": "2022-03-28 12:09:07", "feed_type": null, "interest_keyword_ids": [], "rf_purchased_type": null, "campaign_id": 1728545382536225, "adgroup_name": "AdGroupVadim", "purchased_impression": null, "is_hfss": false, "deep_cpa_bid": 0, "modify_time": "2022-03-31 08:13:30", "schedule_infos": null, "bid_type": "BID_TYPE_NO_BID", "keywords": null, "audience_ids": [], "bid_price": 0, "inventory_filter_enabled": false, "device_model_ids": [], "comment_disabled": false, "conversion_window": null, "share_disabled": false, "frequency": null, "conversion_bid_price": 0, "age_groups": ["AGE_25_34", "AGE_35_44"], "location_ids": [6252001], "advertiser_id": 7002238017842757633, "device_price_ranges": [], "pixel_id": null, "search_result_enabled": false, "actions": [], "excluded_audience_ids": [], "billing_event": "CPC", "creative_material_mode": "CUSTOM"}, "emitted_at": 1697523457617} +{"stream": "ad_groups", "data": {"placement_type": "PLACEMENT_TYPE_NORMAL", "rf_estimated_frequency": null, "create_time": "2021-08-30 03:25:04", "device_price_ranges": [], "placements": ["PLACEMENT_TIKTOK", "PLACEMENT_TOPBUZZ", "PLACEMENT_HELO", "PLACEMENT_PANGLE"], "pacing": "PACING_MODE_SMOOTH", "scheduled_budget": 0, "creative_material_mode": "CUSTOM", "device_model_ids": [], "adgroup_id": 1709487015460898, "frequency": null, "video_download_disabled": false, "actions": [], "excluded_audience_ids": [], "network_types": [], "adgroup_name": "Ad Group20210830062028", "app_type": null, "schedule_start_time": "2021-08-30 03:20:28", "schedule_type": "SCHEDULE_FROM_NOW", "campaign_name": "Website Traffic20210830061428", "category_exclusion_ids": [], "skip_learning_phase": 0, "next_day_retention": null, "included_custom_actions": [], "optimization_goal": "CLICK", "excluded_custom_actions": [], "audience_ids": [], "interest_category_ids": [], "app_id": null, "conversion_window": null, "purchased_impression": null, "feed_type": null, "pixel_id": null, "rf_purchased_type": null, "brand_safety_type": "NO_BRAND_SAFETY", "deep_cpa_bid": 0, "deep_bid_type": null, "budget_mode": "BUDGET_MODE_DAY", "bid_price": 0, "modify_time": "2022-01-02 07:32:13", "is_new_structure": true, "delivery_mode": null, "is_smart_performance_campaign": false, "campaign_id": 1709487018151954, "rf_estimated_cpr": null, "conversion_bid_price": 0, "auto_targeting_enabled": false, "secondary_status": "ADVERTISER_ACCOUNT_PUNISH", "inventory_filter_enabled": false, "schedule_infos": null, "share_disabled": false, "purchased_reach": null, "app_download_url": null, "comment_disabled": false, "billing_event": "CPC", "brand_safety_partner": null, "interest_keyword_ids": [], "frequency_schedule": null, "bid_type": "BID_TYPE_NO_BID", "languages": [], "keywords": null, "is_hfss": false, "advertiser_id": 7001035076276387841, "location_ids": [2017370], "dayparting": "111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111", "optimization_event": null, "operation_status": "ENABLE", "operating_systems": [], "gender": "GENDER_UNLIMITED", "ios14_quota_type": "UNOCCUPIED", "age_groups": null, "statistic_type": null, "schedule_end_time": "2031-08-28 03:20:28", "category_id": 0, "promotion_type": "WEBSITE", "adgroup_app_profile_page_state": null, "secondary_optimization_event": null, "budget": 2000, "bid_display_mode": "CPMV", "search_result_enabled": false}, "emitted_at": 1697523456240} +{"stream": "ad_groups", "data": {"is_hfss": false, "app_download_url": null, "brand_safety_type": "NO_BRAND_SAFETY", "advertiser_id": 7002238017842757633, "rf_estimated_cpr": null, "placements": ["PLACEMENT_TIKTOK", "PLACEMENT_GLOBAL_APP_BUNDLE", "PLACEMENT_PANGLE"], "excluded_custom_actions": [], "app_type": null, "ios14_quota_type": "UNOCCUPIED", "auto_targeting_enabled": false, "schedule_start_time": "2023-10-16 15:35:45", "placement_type": "PLACEMENT_TYPE_AUTOMATIC", "feed_type": null, "skip_learning_phase": 0, "purchased_reach": null, "pixel_id": null, "languages": [], "dayparting": "111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111", "brand_safety_partner": null, "category_id": 0, "rf_purchased_type": null, "deep_bid_type": null, "billing_event": "CPC", "schedule_infos": null, "schedule_end_time": "2033-10-13 15:35:45", "bid_display_mode": "CPMV", "operation_status": "ENABLE", "purchased_impression": null, "statistic_type": null, "create_time": "2023-10-16 14:48:28", "modify_time": "2023-10-16 21:47:26", "operating_systems": [], "isp_ids": [], "category_exclusion_ids": [], "device_price_ranges": [], "bid_type": "BID_TYPE_NO_BID", "comment_disabled": false, "excluded_audience_ids": [], "secondary_optimization_event": null, "actions": [], "pacing": "PACING_MODE_SMOOTH", "share_disabled": false, "zipcode_ids": [], "optimization_goal": "CLICK", "creative_material_mode": "CUSTOM", "schedule_type": "SCHEDULE_FROM_NOW", "frequency_schedule": null, "bid_price": 0, "interest_keyword_ids": [], "household_income": [], "conversion_bid_price": 0, "secondary_status": "ADGROUP_STATUS_CAMPAIGN_DISABLE", "gender": "GENDER_UNLIMITED", "budget_mode": "BUDGET_MODE_DYNAMIC_DAILY_BUDGET", "search_result_enabled": true, "frequency": null, "interest_category_ids": [], "inventory_filter_enabled": false, "rf_estimated_frequency": null, "included_custom_actions": [], "adgroup_name": "Ad group 20231016073545", "spending_power": "ALL", "deep_cpa_bid": 0, "is_new_structure": true, "age_groups": null, "location_ids": [6252001], "delivery_mode": null, "contextual_tag_ids": [], "adgroup_id": 1779923881029666, "optimization_event": null, "budget": 30, "keywords": null, "device_model_ids": [], "promotion_type": "WEBSITE", "conversion_window": null, "video_download_disabled": false, "next_day_retention": null, "is_smart_performance_campaign": false, "campaign_id": 1779923887578145, "adgroup_app_profile_page_state": null, "scheduled_budget": 0, "campaign_name": "UTM_PARAMSTraffic20231016173112", "network_types": [], "app_id": null, "audience_ids": []}, "emitted_at": 1697523457614} +{"stream": "ad_groups", "data": {"is_hfss": false, "app_download_url": null, "brand_safety_type": "NO_BRAND_SAFETY", "advertiser_id": 7002238017842757633, "rf_estimated_cpr": null, "placements": ["PLACEMENT_TIKTOK", "PLACEMENT_TOPBUZZ", "PLACEMENT_PANGLE"], "excluded_custom_actions": [], "app_type": null, "ios14_quota_type": "UNOCCUPIED", "auto_targeting_enabled": false, "schedule_start_time": "2022-03-28 13:02:23", "placement_type": "PLACEMENT_TYPE_AUTOMATIC", "feed_type": null, "skip_learning_phase": 0, "purchased_reach": null, "pixel_id": null, "languages": [], "dayparting": "111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111", "brand_safety_partner": null, "category_id": 0, "rf_purchased_type": null, "deep_bid_type": null, "billing_event": "CPC", "schedule_infos": null, "schedule_end_time": "2032-03-25 13:02:23", "bid_display_mode": "CPMV", "operation_status": "ENABLE", "purchased_impression": null, "statistic_type": null, "create_time": "2022-03-28 12:09:07", "modify_time": "2023-10-17 14:31:10", "operating_systems": [], "category_exclusion_ids": [], "device_price_ranges": [], "bid_type": "BID_TYPE_NO_BID", "comment_disabled": false, "excluded_audience_ids": [], "secondary_optimization_event": null, "actions": [], "pacing": "PACING_MODE_SMOOTH", "share_disabled": false, "optimization_goal": "CLICK", "creative_material_mode": "CUSTOM", "schedule_type": "SCHEDULE_FROM_NOW", "frequency_schedule": null, "bid_price": 0, "interest_keyword_ids": [], "conversion_bid_price": 0, "secondary_status": "ADGROUP_STATUS_CAMPAIGN_DISABLE", "gender": "GENDER_UNLIMITED", "budget_mode": "BUDGET_MODE_DAY", "search_result_enabled": false, "frequency": null, "interest_category_ids": [15], "inventory_filter_enabled": false, "rf_estimated_frequency": null, "included_custom_actions": [], "adgroup_name": "AdGroupVadim", "deep_cpa_bid": 0, "is_new_structure": true, "age_groups": ["AGE_25_34", "AGE_35_44"], "location_ids": [6252001], "delivery_mode": null, "adgroup_id": 1728545385226289, "optimization_event": null, "budget": 20, "keywords": null, "device_model_ids": [], "promotion_type": "WEBSITE", "conversion_window": null, "video_download_disabled": false, "next_day_retention": null, "is_smart_performance_campaign": false, "campaign_id": 1728545382536225, "adgroup_app_profile_page_state": null, "scheduled_budget": 0, "campaign_name": "CampaignVadimTraffic", "network_types": [], "app_id": null, "audience_ids": []}, "emitted_at": 1697523457617} {"stream": "campaigns", "data": {"is_new_structure": true, "campaign_type": "REGULAR_CAMPAIGN", "secondary_status": "CAMPAIGN_STATUS_ENABLE", "modify_time": "2023-10-16 14:48:26", "campaign_name": "UTM_PARAMSTraffic20231016173112", "operation_status": "ENABLE", "budget": 0, "deep_bid_type": null, "roas_bid": 0, "rf_campaign_type": "STANDARD", "budget_mode": "BUDGET_MODE_INFINITE", "is_search_campaign": false, "objective": "LANDING_PAGE", "advertiser_id": 7002238017842757633, "app_promotion_type": "UNSET", "is_smart_performance_campaign": false, "objective_type": "TRAFFIC", "campaign_id": 1779923887578145, "create_time": "2023-10-16 14:48:26"}, "emitted_at": 1697523460073} {"stream": "campaigns", "data": {"is_new_structure": true, "campaign_type": "REGULAR_CAMPAIGN", "secondary_status": "CAMPAIGN_STATUS_DISABLE", "modify_time": "2022-03-30 21:23:52", "campaign_name": "CampaignVadimTraffic", "operation_status": "DISABLE", "budget": 0, "deep_bid_type": null, "roas_bid": 0, "budget_mode": "BUDGET_MODE_INFINITE", "is_search_campaign": false, "objective": "LANDING_PAGE", "advertiser_id": 7002238017842757633, "is_smart_performance_campaign": false, "objective_type": "TRAFFIC", "campaign_id": 1728545382536225, "create_time": "2022-03-28 12:09:05"}, "emitted_at": 1697523460075} {"stream": "campaigns", "data": {"is_new_structure": true, "campaign_type": "REGULAR_CAMPAIGN", "secondary_status": "CAMPAIGN_STATUS_DISABLE", "modify_time": "2022-03-24 12:08:29", "campaign_name": "Website Traffic20211020010104", "operation_status": "DISABLE", "budget": 0, "deep_bid_type": null, "roas_bid": 0, "budget_mode": "BUDGET_MODE_INFINITE", "is_search_campaign": false, "objective": "LANDING_PAGE", "advertiser_id": 7002238017842757633, "is_smart_performance_campaign": false, "objective_type": "TRAFFIC", "campaign_id": 1714125042508817, "create_time": "2021-10-20 08:04:04"}, "emitted_at": 1697523460075} From 2edad390c5b30ff26b7d1fee24eb4958469e3e9a Mon Sep 17 00:00:00 2001 From: Denys Davydov Date: Wed, 18 Oct 2023 17:37:24 +0300 Subject: [PATCH 6/6] expected records --- .../integration_tests/expected_records.jsonl | 100 +++++++++--------- 1 file changed, 50 insertions(+), 50 deletions(-) diff --git a/airbyte-integrations/connectors/source-tiktok-marketing/integration_tests/expected_records.jsonl b/airbyte-integrations/connectors/source-tiktok-marketing/integration_tests/expected_records.jsonl index fc10ce81b05f..0ae92b74eeb5 100644 --- a/airbyte-integrations/connectors/source-tiktok-marketing/integration_tests/expected_records.jsonl +++ b/airbyte-integrations/connectors/source-tiktok-marketing/integration_tests/expected_records.jsonl @@ -1,50 +1,50 @@ -{"stream": "advertisers", "data": {"cellphone_number": "+18023****63", "promotion_center_city": null, "role": "ROLE_ADVERTISER", "currency": "RUB", "display_timezone": "Europe/Moscow", "address": null, "balance": 0, "language": "", "name": "Airbyte0827", "promotion_center_province": null, "license_city": null, "status": "STATUS_LIMIT", "advertiser_id": 7001035076276387841, "email": "i***************@**********", "create_time": 1630055520, "description": null, "brand": null, "telephone_number": "+18023****63", "advertiser_account_type": "AUCTION", "license_url": null, "contacter": "Ai***te", "country": "RU", "industry": "291905", "license_no": null, "license_province": null, "timezone": "Europe/Moscow", "promotion_area": "0", "company": "Airbyte", "rejection_reason": "1:Dear customer,\nWe've detected that your account has not been logged into for a long period of time, which could cause a security risk. In order to improve platform security, your account has been temporarily suspended. For further information or if you have any questions, please submit a ticket under \"Account Review\" in the Business Support Center to raise an appeal.\nThank you for your understanding.\n,endtime:2031-12-31 07:32:13"}, "emitted_at": 1697523452470} -{"stream": "ads", "data": {"viewability_vast_url": null, "click_tracking_url": null, "brand_safety_postbid_partner": "UNSET", "playable_url": "", "music_id": null, "ad_texts": null, "creative_type": null, "tracking_pixel_id": 0, "campaign_name": "UTM_PARAMSTraffic20231016173112", "modify_time": "2023-10-16 14:53:29", "creative_authorized": true, "page_id": null, "identity_id": "7244085252222255106", "identity_type": "CUSTOMIZED_USER", "ad_format": "SINGLE_VIDEO", "viewability_postbid_partner": "UNSET", "adgroup_name": "Ad group 20231016073545", "optimization_event": null, "is_aco": false, "card_id": null, "campaign_id": 1779923887578145, "impression_tracking_url": null, "is_new_structure": true, "deeplink_type": "NORMAL", "fallback_type": "UNSET", "call_to_action_id": "7290567590173363202", "secondary_status": "AD_STATUS_CAMPAIGN_DISABLE", "avatar_icon_web_uri": "ad-site-i18n-sg/202110205d0d488b68ead898460bad74", "ad_text": "airbyte", "adgroup_id": 1779923881029666, "landing_page_urls": null, "ad_id": 1779923894511665, "brand_safety_vast_url": null, "image_ids": ["tos-alisg-p-0051c001-sg/oEnxmUxanQZbiaZzA9eAQfNdQBb1lzBIDRgVDL"], "create_time": "2023-10-16 14:48:30", "ad_name": "Video16974675946002_Heartwarming Atmosphere Pops with Piano Main(827850)_2023-10-16 07:46:35", "display_name": "Airbyte", "vast_moat_enabled": false, "video_id": "v10033g50000ckmkpnbc77ucmin3t88g", "advertiser_id": 7002238017842757633, "deeplink": "", "profile_image_url": "https://p21-ad-sg.ibyteimg.com/obj/ad-site-i18n-sg/202110205d0d488b68ead898460bad74", "operation_status": "ENABLE", "landing_page_url": "https://airbyte.com/?utm_source=tiktok&utm_medium=paid-social&utm_campaign=_tiktok_ads", "app_name": ""}, "emitted_at": 1697523455072} -{"stream": "ads", "data": {"viewability_vast_url": null, "click_tracking_url": null, "brand_safety_postbid_partner": "UNSET", "playable_url": "", "music_id": null, "ad_texts": null, "creative_type": null, "tracking_pixel_id": 0, "campaign_name": "UTM_PARAMSTraffic20231016173112", "modify_time": "2023-10-16 14:53:29", "creative_authorized": true, "page_id": null, "identity_id": "7244085252222255106", "identity_type": "CUSTOMIZED_USER", "ad_format": "SINGLE_VIDEO", "viewability_postbid_partner": "UNSET", "adgroup_name": "Ad group 20231016073545", "optimization_event": null, "is_aco": false, "card_id": null, "campaign_id": 1779923887578145, "impression_tracking_url": null, "is_new_structure": true, "deeplink_type": "NORMAL", "fallback_type": "UNSET", "call_to_action_id": "7290567668606716929", "secondary_status": "AD_STATUS_CAMPAIGN_DISABLE", "avatar_icon_web_uri": "ad-site-i18n-sg/202110205d0d488b68ead898460bad74", "ad_text": "airbyte", "adgroup_id": 1779923881029666, "landing_page_urls": null, "ad_id": 1779923894506609, "brand_safety_vast_url": null, "image_ids": ["tos-alisg-p-0051c001-sg/oEaaNUsAlIQwDnBGmBLecBzDQGnACMA0Xgbfb5"], "create_time": "2023-10-16 14:48:30", "ad_name": "Video16974675945951_Whale, sea, electronica(859574)_2023-10-16 07:46:35", "display_name": "Airbyte", "vast_moat_enabled": false, "video_id": "v10033g50000ckmkplrc77u30n4dkdb0", "advertiser_id": 7002238017842757633, "deeplink": "", "profile_image_url": "https://p21-ad-sg.ibyteimg.com/obj/ad-site-i18n-sg/202110205d0d488b68ead898460bad74", "operation_status": "ENABLE", "landing_page_url": "https://airbyte.com/?utm_source=tiktok&utm_medium=paid-social&utm_campaign=_tiktok_ads", "app_name": ""}, "emitted_at": 1697523455076} -{"stream": "ads", "data": {"viewability_vast_url": null, "click_tracking_url": null, "brand_safety_postbid_partner": "UNSET", "playable_url": "", "music_id": null, "ad_texts": null, "creative_type": null, "campaign_name": "CampaignVadimTraffic", "modify_time": "2023-10-17 08:50:32", "creative_authorized": false, "page_id": null, "identity_id": "7080121820963422209", "identity_type": "CUSTOMIZED_USER", "ad_format": "SINGLE_VIDEO", "viewability_postbid_partner": "UNSET", "adgroup_name": "AdGroupVadim", "optimization_event": null, "is_aco": false, "card_id": null, "campaign_id": 1728545382536225, "impression_tracking_url": null, "is_new_structure": true, "deeplink_type": "NORMAL", "fallback_type": "UNSET", "call_to_action_id": "7080120957230238722", "secondary_status": "AD_STATUS_CAMPAIGN_DISABLE", "avatar_icon_web_uri": "ad-site-i18n-sg/202203285d0de5c114d0690a462bb6a4", "ad_text": "Open-source\ndata integration for modern data teams", "adgroup_id": 1728545385226289, "landing_page_urls": null, "ad_id": 1728545390695442, "brand_safety_vast_url": null, "image_ids": ["v0201/7f371ff6f0764f8b8ef4f37d7b980d50"], "create_time": "2022-03-28 12:09:09", "ad_name": "AdVadim-Optimized Version 3_202203281449_2022-03-28 05:03:44", "display_name": "airbyte", "vast_moat_enabled": false, "video_id": "v10033g50000c90q1d3c77ub6e96fvo0", "advertiser_id": 7002238017842757633, "deeplink": "", "profile_image_url": "https://p21-ad-sg.ibyteimg.com/obj/ad-site-i18n-sg/202203285d0de5c114d0690a462bb6a4", "operation_status": "ENABLE", "landing_page_url": "https://airbyte.com", "app_name": ""}, "emitted_at": 1697523455079} -{"stream": "ad_groups", "data": {"placement_type": "PLACEMENT_TYPE_NORMAL", "rf_estimated_frequency": null, "create_time": "2021-08-30 03:25:04", "device_price_ranges": [], "placements": ["PLACEMENT_TIKTOK", "PLACEMENT_TOPBUZZ", "PLACEMENT_HELO", "PLACEMENT_PANGLE"], "pacing": "PACING_MODE_SMOOTH", "scheduled_budget": 0, "creative_material_mode": "CUSTOM", "device_model_ids": [], "adgroup_id": 1709487015460898, "frequency": null, "video_download_disabled": false, "actions": [], "excluded_audience_ids": [], "network_types": [], "adgroup_name": "Ad Group20210830062028", "app_type": null, "schedule_start_time": "2021-08-30 03:20:28", "schedule_type": "SCHEDULE_FROM_NOW", "campaign_name": "Website Traffic20210830061428", "category_exclusion_ids": [], "skip_learning_phase": 0, "next_day_retention": null, "included_custom_actions": [], "optimization_goal": "CLICK", "excluded_custom_actions": [], "audience_ids": [], "interest_category_ids": [], "app_id": null, "conversion_window": null, "purchased_impression": null, "feed_type": null, "pixel_id": null, "rf_purchased_type": null, "brand_safety_type": "NO_BRAND_SAFETY", "deep_cpa_bid": 0, "deep_bid_type": null, "budget_mode": "BUDGET_MODE_DAY", "bid_price": 0, "modify_time": "2022-01-02 07:32:13", "is_new_structure": true, "delivery_mode": null, "is_smart_performance_campaign": false, "campaign_id": 1709487018151954, "rf_estimated_cpr": null, "conversion_bid_price": 0, "auto_targeting_enabled": false, "secondary_status": "ADVERTISER_ACCOUNT_PUNISH", "inventory_filter_enabled": false, "schedule_infos": null, "share_disabled": false, "purchased_reach": null, "app_download_url": null, "comment_disabled": false, "billing_event": "CPC", "brand_safety_partner": null, "interest_keyword_ids": [], "frequency_schedule": null, "bid_type": "BID_TYPE_NO_BID", "languages": [], "keywords": null, "is_hfss": false, "advertiser_id": 7001035076276387841, "location_ids": [2017370], "dayparting": "111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111", "optimization_event": null, "operation_status": "ENABLE", "operating_systems": [], "gender": "GENDER_UNLIMITED", "ios14_quota_type": "UNOCCUPIED", "age_groups": null, "statistic_type": null, "schedule_end_time": "2031-08-28 03:20:28", "category_id": 0, "promotion_type": "WEBSITE", "adgroup_app_profile_page_state": null, "secondary_optimization_event": null, "budget": 2000, "bid_display_mode": "CPMV", "search_result_enabled": false}, "emitted_at": 1697523456240} -{"stream": "ad_groups", "data": {"is_hfss": false, "app_download_url": null, "brand_safety_type": "NO_BRAND_SAFETY", "advertiser_id": 7002238017842757633, "rf_estimated_cpr": null, "placements": ["PLACEMENT_TIKTOK", "PLACEMENT_GLOBAL_APP_BUNDLE", "PLACEMENT_PANGLE"], "excluded_custom_actions": [], "app_type": null, "ios14_quota_type": "UNOCCUPIED", "auto_targeting_enabled": false, "schedule_start_time": "2023-10-16 15:35:45", "placement_type": "PLACEMENT_TYPE_AUTOMATIC", "feed_type": null, "skip_learning_phase": 0, "purchased_reach": null, "pixel_id": null, "languages": [], "dayparting": "111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111", "brand_safety_partner": null, "category_id": 0, "rf_purchased_type": null, "deep_bid_type": null, "billing_event": "CPC", "schedule_infos": null, "schedule_end_time": "2033-10-13 15:35:45", "bid_display_mode": "CPMV", "operation_status": "ENABLE", "purchased_impression": null, "statistic_type": null, "create_time": "2023-10-16 14:48:28", "modify_time": "2023-10-16 21:47:26", "operating_systems": [], "isp_ids": [], "category_exclusion_ids": [], "device_price_ranges": [], "bid_type": "BID_TYPE_NO_BID", "comment_disabled": false, "excluded_audience_ids": [], "secondary_optimization_event": null, "actions": [], "pacing": "PACING_MODE_SMOOTH", "share_disabled": false, "zipcode_ids": [], "optimization_goal": "CLICK", "creative_material_mode": "CUSTOM", "schedule_type": "SCHEDULE_FROM_NOW", "frequency_schedule": null, "bid_price": 0, "interest_keyword_ids": [], "household_income": [], "conversion_bid_price": 0, "secondary_status": "ADGROUP_STATUS_CAMPAIGN_DISABLE", "gender": "GENDER_UNLIMITED", "budget_mode": "BUDGET_MODE_DYNAMIC_DAILY_BUDGET", "search_result_enabled": true, "frequency": null, "interest_category_ids": [], "inventory_filter_enabled": false, "rf_estimated_frequency": null, "included_custom_actions": [], "adgroup_name": "Ad group 20231016073545", "spending_power": "ALL", "deep_cpa_bid": 0, "is_new_structure": true, "age_groups": null, "location_ids": [6252001], "delivery_mode": null, "contextual_tag_ids": [], "adgroup_id": 1779923881029666, "optimization_event": null, "budget": 30, "keywords": null, "device_model_ids": [], "promotion_type": "WEBSITE", "conversion_window": null, "video_download_disabled": false, "next_day_retention": null, "is_smart_performance_campaign": false, "campaign_id": 1779923887578145, "adgroup_app_profile_page_state": null, "scheduled_budget": 0, "campaign_name": "UTM_PARAMSTraffic20231016173112", "network_types": [], "app_id": null, "audience_ids": []}, "emitted_at": 1697523457614} -{"stream": "ad_groups", "data": {"is_hfss": false, "app_download_url": null, "brand_safety_type": "NO_BRAND_SAFETY", "advertiser_id": 7002238017842757633, "rf_estimated_cpr": null, "placements": ["PLACEMENT_TIKTOK", "PLACEMENT_TOPBUZZ", "PLACEMENT_PANGLE"], "excluded_custom_actions": [], "app_type": null, "ios14_quota_type": "UNOCCUPIED", "auto_targeting_enabled": false, "schedule_start_time": "2022-03-28 13:02:23", "placement_type": "PLACEMENT_TYPE_AUTOMATIC", "feed_type": null, "skip_learning_phase": 0, "purchased_reach": null, "pixel_id": null, "languages": [], "dayparting": "111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111", "brand_safety_partner": null, "category_id": 0, "rf_purchased_type": null, "deep_bid_type": null, "billing_event": "CPC", "schedule_infos": null, "schedule_end_time": "2032-03-25 13:02:23", "bid_display_mode": "CPMV", "operation_status": "ENABLE", "purchased_impression": null, "statistic_type": null, "create_time": "2022-03-28 12:09:07", "modify_time": "2023-10-17 14:31:10", "operating_systems": [], "category_exclusion_ids": [], "device_price_ranges": [], "bid_type": "BID_TYPE_NO_BID", "comment_disabled": false, "excluded_audience_ids": [], "secondary_optimization_event": null, "actions": [], "pacing": "PACING_MODE_SMOOTH", "share_disabled": false, "optimization_goal": "CLICK", "creative_material_mode": "CUSTOM", "schedule_type": "SCHEDULE_FROM_NOW", "frequency_schedule": null, "bid_price": 0, "interest_keyword_ids": [], "conversion_bid_price": 0, "secondary_status": "ADGROUP_STATUS_CAMPAIGN_DISABLE", "gender": "GENDER_UNLIMITED", "budget_mode": "BUDGET_MODE_DAY", "search_result_enabled": false, "frequency": null, "interest_category_ids": [15], "inventory_filter_enabled": false, "rf_estimated_frequency": null, "included_custom_actions": [], "adgroup_name": "AdGroupVadim", "deep_cpa_bid": 0, "is_new_structure": true, "age_groups": ["AGE_25_34", "AGE_35_44"], "location_ids": [6252001], "delivery_mode": null, "adgroup_id": 1728545385226289, "optimization_event": null, "budget": 20, "keywords": null, "device_model_ids": [], "promotion_type": "WEBSITE", "conversion_window": null, "video_download_disabled": false, "next_day_retention": null, "is_smart_performance_campaign": false, "campaign_id": 1728545382536225, "adgroup_app_profile_page_state": null, "scheduled_budget": 0, "campaign_name": "CampaignVadimTraffic", "network_types": [], "app_id": null, "audience_ids": []}, "emitted_at": 1697523457617} -{"stream": "campaigns", "data": {"is_new_structure": true, "campaign_type": "REGULAR_CAMPAIGN", "secondary_status": "CAMPAIGN_STATUS_ENABLE", "modify_time": "2023-10-16 14:48:26", "campaign_name": "UTM_PARAMSTraffic20231016173112", "operation_status": "ENABLE", "budget": 0, "deep_bid_type": null, "roas_bid": 0, "rf_campaign_type": "STANDARD", "budget_mode": "BUDGET_MODE_INFINITE", "is_search_campaign": false, "objective": "LANDING_PAGE", "advertiser_id": 7002238017842757633, "app_promotion_type": "UNSET", "is_smart_performance_campaign": false, "objective_type": "TRAFFIC", "campaign_id": 1779923887578145, "create_time": "2023-10-16 14:48:26"}, "emitted_at": 1697523460073} -{"stream": "campaigns", "data": {"is_new_structure": true, "campaign_type": "REGULAR_CAMPAIGN", "secondary_status": "CAMPAIGN_STATUS_DISABLE", "modify_time": "2022-03-30 21:23:52", "campaign_name": "CampaignVadimTraffic", "operation_status": "DISABLE", "budget": 0, "deep_bid_type": null, "roas_bid": 0, "budget_mode": "BUDGET_MODE_INFINITE", "is_search_campaign": false, "objective": "LANDING_PAGE", "advertiser_id": 7002238017842757633, "is_smart_performance_campaign": false, "objective_type": "TRAFFIC", "campaign_id": 1728545382536225, "create_time": "2022-03-28 12:09:05"}, "emitted_at": 1697523460075} -{"stream": "campaigns", "data": {"is_new_structure": true, "campaign_type": "REGULAR_CAMPAIGN", "secondary_status": "CAMPAIGN_STATUS_DISABLE", "modify_time": "2022-03-24 12:08:29", "campaign_name": "Website Traffic20211020010104", "operation_status": "DISABLE", "budget": 0, "deep_bid_type": null, "roas_bid": 0, "budget_mode": "BUDGET_MODE_INFINITE", "is_search_campaign": false, "objective": "LANDING_PAGE", "advertiser_id": 7002238017842757633, "is_smart_performance_campaign": false, "objective_type": "TRAFFIC", "campaign_id": 1714125042508817, "create_time": "2021-10-20 08:04:04"}, "emitted_at": 1697523460075} -{"stream": "advertiser_ids", "data": {"advertiser_id": 7001035076276387841, "advertiser_name": "Airbyte0827"}, "emitted_at": 1697523452478} -{"stream": "advertiser_ids", "data": {"advertiser_id": 7001040009704833026, "advertiser_name": "Airbyte08270"}, "emitted_at": 1697523452478} -{"stream": "advertiser_ids", "data": {"advertiser_id": 7002238017842757633, "advertiser_name": "Airbyte0830"}, "emitted_at": 1697523452479} -{"stream": "ads_reports_daily", "data": {"metrics": {"average_video_play_per_user": "1.64", "secondary_goal_result_rate": null, "tt_app_id": 0, "video_views_p50": "214", "video_watched_2s": "686", "complete_payment": "0", "mobile_app_id": "0", "app_install": "0", "impressions": "5830", "real_time_app_install": "0", "total_onsite_shopping_value": "0.00", "real_time_conversion": "0", "real_time_cost_per_result": "0.290", "cost_per_secondary_goal_result": null, "secondary_goal_result": null, "conversion_rate": "0.00", "cost_per_conversion": "0.00", "real_time_app_install_cost": "0.00", "placement_type": "Automatic Placement", "video_views_p25": "513", "result_rate": "1.18", "ad_name": "Optimized Version 4_202110201102_2021-10-20 11:02:00", "video_views_p75": "140", "clicks_on_music_disc": "0", "likes": "36", "video_views_p100": "92", "video_play_actions": "5173", "ad_text": "Airbyte - data portabioolity platform - from anywhere to anywhere!", "video_watched_6s": "180", "adgroup_id": 1714125049901106, "real_time_result_rate": "1.18", "result": "69", "cpm": "3.43", "reach": "4806", "real_time_cost_per_conversion": "0.00", "vta_conversion": "0", "total_complete_payment_rate": "0.00", "cta_conversion": "0", "promotion_type": "Website", "follows": "0", "real_time_conversion_rate": "0.00", "profile_visits": "0", "vta_purchase": "0", "real_time_result": "69", "ctr": "1.18", "average_video_play": "1.52", "comments": "0", "dpa_target_audience_type": null, "clicks": "69", "shares": "0", "conversion": "0", "campaign_id": 1714125042508817, "onsite_shopping": "0", "value_per_complete_payment": "0.00", "campaign_name": "Website Traffic20211020010104", "frequency": "1.21", "tt_app_name": "0", "cpc": "0.29", "cost_per_result": "0.290", "total_purchase_value": "0.00", "adgroup_name": "Ad Group20211020010107", "cta_purchase": "0", "spend": "20.00", "total_pageview": "0", "cost_per_1000_reached": "4.16"}, "dimensions": {"stat_time_day": "2021-10-25 00:00:00", "ad_id": 1714125051115569}, "stat_time_day": "2021-10-25 00:00:00", "ad_id": 1714125051115569}, "emitted_at": 1697523494078} -{"stream": "ads_reports_daily", "data": {"metrics": {"average_video_play_per_user": "1.55", "secondary_goal_result_rate": null, "tt_app_id": 0, "video_views_p50": "130", "video_watched_2s": "408", "complete_payment": "0", "mobile_app_id": "0", "app_install": "0", "impressions": "3765", "real_time_app_install": "0", "total_onsite_shopping_value": "0.00", "real_time_conversion": "0", "real_time_cost_per_result": "0.377", "cost_per_secondary_goal_result": null, "secondary_goal_result": null, "conversion_rate": "0.00", "cost_per_conversion": "0.00", "real_time_app_install_cost": "0.00", "placement_type": "Automatic Placement", "video_views_p25": "295", "result_rate": "1.41", "ad_name": "Optimized Version 4_202110201102_2021-10-20 11:02:00", "video_views_p75": "74", "clicks_on_music_disc": "0", "likes": "36", "video_views_p100": "52", "video_play_actions": "3344", "ad_text": "Airbyte - data portabioolity platform - from anywhere to anywhere!", "video_watched_6s": "106", "adgroup_id": 1714125049901106, "real_time_result_rate": "1.41", "result": "53", "cpm": "5.31", "reach": "3134", "real_time_cost_per_conversion": "0.00", "vta_conversion": "0", "total_complete_payment_rate": "0.00", "cta_conversion": "0", "promotion_type": "Website", "follows": "0", "real_time_conversion_rate": "0.00", "profile_visits": "0", "vta_purchase": "0", "real_time_result": "53", "ctr": "1.41", "average_video_play": "1.45", "comments": "1", "dpa_target_audience_type": null, "clicks": "53", "shares": "0", "conversion": "0", "campaign_id": 1714125042508817, "onsite_shopping": "0", "value_per_complete_payment": "0.00", "campaign_name": "Website Traffic20211020010104", "frequency": "1.20", "tt_app_name": "0", "cpc": "0.38", "cost_per_result": "0.377", "total_purchase_value": "0.00", "adgroup_name": "Ad Group20211020010107", "cta_purchase": "0", "spend": "20.00", "total_pageview": "0", "cost_per_1000_reached": "6.38"}, "dimensions": {"stat_time_day": "2021-10-20 00:00:00", "ad_id": 1714125051115569}, "stat_time_day": "2021-10-20 00:00:00", "ad_id": 1714125051115569}, "emitted_at": 1697523494088} -{"stream": "ads_reports_daily", "data": {"metrics": {"average_video_play_per_user": "1.61", "secondary_goal_result_rate": null, "tt_app_id": 0, "video_views_p50": "142", "video_watched_2s": "413", "complete_payment": "0", "mobile_app_id": "0", "app_install": "0", "impressions": "3750", "real_time_app_install": "0", "total_onsite_shopping_value": "0.00", "real_time_conversion": "0", "real_time_cost_per_result": "0.435", "cost_per_secondary_goal_result": null, "secondary_goal_result": null, "conversion_rate": "0.00", "cost_per_conversion": "0.00", "real_time_app_install_cost": "0.00", "placement_type": "Automatic Placement", "video_views_p25": "297", "result_rate": "1.23", "ad_name": "Optimized Version 4_202110201102_2021-10-20 11:02:00", "video_views_p75": "90", "clicks_on_music_disc": "0", "likes": "25", "video_views_p100": "71", "video_play_actions": "3344", "ad_text": "Airbyte - data portabioolity platform - from anywhere to anywhere!", "video_watched_6s": "112", "adgroup_id": 1714125049901106, "real_time_result_rate": "1.23", "result": "46", "cpm": "5.33", "reach": "3119", "real_time_cost_per_conversion": "0.00", "vta_conversion": "0", "total_complete_payment_rate": "0.00", "cta_conversion": "0", "promotion_type": "Website", "follows": "0", "real_time_conversion_rate": "0.00", "profile_visits": "0", "vta_purchase": "0", "real_time_result": "46", "ctr": "1.23", "average_video_play": "1.50", "comments": "1", "dpa_target_audience_type": null, "clicks": "46", "shares": "0", "conversion": "0", "campaign_id": 1714125042508817, "onsite_shopping": "0", "value_per_complete_payment": "0.00", "campaign_name": "Website Traffic20211020010104", "frequency": "1.20", "tt_app_name": "0", "cpc": "0.43", "cost_per_result": "0.435", "total_purchase_value": "0.00", "adgroup_name": "Ad Group20211020010107", "cta_purchase": "0", "spend": "20.00", "total_pageview": "0", "cost_per_1000_reached": "6.41"}, "dimensions": {"stat_time_day": "2021-10-26 00:00:00", "ad_id": 1714125051115569}, "stat_time_day": "2021-10-26 00:00:00", "ad_id": 1714125051115569}, "emitted_at": 1697523494096} -{"stream": "ads_reports_lifetime", "data": {"metrics": {"comments": "0", "campaign_name": "Website Traffic20210830061428", "conversion_rate": "0.00", "shares": "0", "adgroup_name": "Ad Group20210830062028", "total_complete_payment_rate": "0.00", "average_video_play_per_user": "0.00", "cpm": "0.00", "impressions": "0", "total_onsite_shopping_value": "0.00", "ctr": "0.00", "onsite_shopping": "0", "conversion": "0", "video_views_p75": "0", "ad_name": "Optimized Version 1_202108300622_2021-08-30 06:22:01", "clicks": "0", "real_time_result_rate": "0.00", "real_time_app_install_cost": "0.00", "video_views_p100": "0", "reach": "0", "frequency": "0.00", "follows": "0", "clicks_on_music_disc": "0", "real_time_cost_per_result": "0.000", "complete_payment": "0", "cpc": "0.00", "total_purchase_value": "0.00", "cta_purchase": "0", "video_views_p25": "0", "real_time_app_install": "0", "real_time_cost_per_conversion": "0.00", "result_rate": "0.00", "real_time_conversion_rate": "0.00", "adgroup_id": 1709487015460898, "placement_type": "TikTok,News Feed App Series,Helo,Pangle", "secondary_goal_result": null, "vta_conversion": "0", "tt_app_name": "0", "secondary_goal_result_rate": null, "tt_app_id": 0, "real_time_conversion": "0", "cost_per_1000_reached": "0.00", "dpa_target_audience_type": null, "average_video_play": "0.00", "promotion_type": "Website", "real_time_result": "0", "ad_text": "Airbyte is open source ETl platform", "cost_per_result": "0.000", "cost_per_secondary_goal_result": null, "video_views_p50": "0", "campaign_id": 1709487018151954, "likes": "0", "video_watched_6s": "0", "total_pageview": "0", "mobile_app_id": "0", "video_watched_2s": "0", "vta_purchase": "0", "video_play_actions": "0", "profile_visits": "0", "value_per_complete_payment": "0.00", "cta_conversion": "0", "cost_per_conversion": "0.00", "spend": "0.00", "app_install": "0", "result": "0"}, "dimensions": {"ad_id": 1709487056762929}, "ad_id": 1709487056762929}, "emitted_at": 1697523519983} -{"stream": "ads_reports_lifetime", "data": {"dimensions": {"ad_id": 1709487056762929}, "metrics": {"cpc": "0.00", "video_views_p100": "0", "tt_app_id": 0, "cost_per_result": "0.000", "real_time_app_install": "0", "video_watched_6s": "0", "frequency": "0.00", "onsite_shopping": "0", "value_per_complete_payment": "0.00", "result": "0", "clicks_on_music_disc": "0", "real_time_cost_per_conversion": "0.00", "cost_per_secondary_goal_result": null, "reach": "0", "video_views_p50": "0", "campaign_name": "Website Traffic20210830061428", "likes": "0", "video_views_p75": "0", "real_time_conversion_rate": "0.00", "video_play_actions": "0", "real_time_conversion": "0", "impressions": "0", "ad_name": "Optimized Version 1_202108300622_2021-08-30 06:22:01", "secondary_goal_result": null, "comments": "0", "total_complete_payment_rate": "0.00", "real_time_result_rate": "0.00", "complete_payment": "0", "average_video_play": "0.00", "clicks": "0", "follows": "0", "adgroup_id": 1709487015460898, "vta_purchase": "0", "total_pageview": "0", "cta_purchase": "0", "app_install": "0", "ad_text": "Airbyte is open source ETl platform", "profile_visits": "0", "shares": "0", "real_time_app_install_cost": "0.00", "result_rate": "0.00", "video_watched_2s": "0", "mobile_app_id": "0", "vta_conversion": "0", "placement_type": "TikTok,News Feed App Series,Helo,Pangle", "secondary_goal_result_rate": null, "real_time_cost_per_result": "0.000", "average_video_play_per_user": "0.00", "promotion_type": "Website", "total_onsite_shopping_value": "0.00", "conversion_rate": "0.00", "campaign_id": 1709487018151954, "spend": "0.00", "cta_conversion": "0", "real_time_result": "0", "ctr": "0.00", "adgroup_name": "Ad Group20210830062028", "tt_app_name": "0", "video_views_p25": "0", "cpm": "0.00", "conversion": "0", "cost_per_1000_reached": "0.00", "total_purchase_value": "0.00", "dpa_target_audience_type": null, "cost_per_conversion": "0.00"}, "ad_id": 1709487056762929}, "emitted_at": 1697523521505} -{"stream": "ads_reports_lifetime", "data": {"dimensions": {"ad_id": 1709487056762929}, "metrics": {"promotion_type": "Website", "adgroup_id": 1709487015460898, "video_watched_6s": "0", "cta_purchase": "0", "real_time_conversion_rate": "0.00", "shares": "0", "follows": "0", "cost_per_conversion": "0.00", "real_time_cost_per_conversion": "0.00", "video_play_actions": "0", "conversion_rate": "0.00", "dpa_target_audience_type": null, "vta_purchase": "0", "ad_name": "Optimized Version 1_202108300622_2021-08-30 06:22:01", "total_pageview": "0", "video_views_p75": "0", "average_video_play_per_user": "0.00", "value_per_complete_payment": "0.00", "onsite_shopping": "0", "real_time_result": "0", "placement_type": "TikTok,News Feed App Series,Helo,Pangle", "cpc": "0.00", "video_views_p50": "0", "cpm": "0.00", "ctr": "0.00", "complete_payment": "0", "real_time_result_rate": "0.00", "conversion": "0", "comments": "0", "likes": "0", "ad_text": "Airbyte is open source ETl platform", "campaign_id": 1709487018151954, "secondary_goal_result": null, "video_views_p25": "0", "cost_per_1000_reached": "0.00", "mobile_app_id": "0", "clicks_on_music_disc": "0", "cost_per_result": "0.000", "cta_conversion": "0", "real_time_app_install": "0", "total_onsite_shopping_value": "0.00", "clicks": "0", "app_install": "0", "profile_visits": "0", "spend": "0.00", "real_time_app_install_cost": "0.00", "vta_conversion": "0", "video_views_p100": "0", "frequency": "0.00", "tt_app_name": "0", "real_time_cost_per_result": "0.000", "total_complete_payment_rate": "0.00", "result_rate": "0.00", "average_video_play": "0.00", "campaign_name": "Website Traffic20210830061428", "total_purchase_value": "0.00", "secondary_goal_result_rate": null, "impressions": "0", "reach": "0", "tt_app_id": 0, "cost_per_secondary_goal_result": null, "result": "0", "real_time_conversion": "0", "adgroup_name": "Ad Group20210830062028", "video_watched_2s": "0"}, "ad_id": 1709487056762929}, "emitted_at": 1697523522846} -{"stream": "ad_groups_reports_daily", "data": {"metrics": {"tt_app_name": "0", "follows": "0", "clicks_on_music_disc": "0", "mobile_app_id": "0", "comments": "1", "real_time_cost_per_result": "0.377", "secondary_goal_result_rate": null, "video_watched_2s": "408", "campaign_name": "Website Traffic20211020010104", "tt_app_id": 0, "cpc": "0.38", "conversion_rate": "0.00", "shares": "0", "real_time_conversion": "0", "cost_per_1000_reached": "6.38", "adgroup_name": "Ad Group20211020010107", "video_play_actions": "3344", "profile_visits": "0", "dpa_target_audience_type": null, "average_video_play_per_user": "1.55", "cpm": "5.31", "average_video_play": "1.45", "promotion_type": "Website", "impressions": "3765", "video_views_p25": "295", "real_time_result": "53", "ctr": "1.41", "cost_per_result": "0.377", "cost_per_secondary_goal_result": null, "video_views_p50": "130", "real_time_app_install": "0", "real_time_cost_per_conversion": "0.00", "cost_per_conversion": "0.00", "result_rate": "1.41", "conversion": "0", "video_views_p75": "74", "clicks": "53", "real_time_conversion_rate": "0.00", "real_time_result_rate": "1.41", "spend": "20.00", "app_install": "0", "campaign_id": 1714125042508817, "likes": "36", "placement_type": "Automatic Placement", "real_time_app_install_cost": "0.00", "secondary_goal_result": null, "video_watched_6s": "106", "video_views_p100": "52", "reach": "3134", "result": "53", "frequency": "1.20"}, "dimensions": {"adgroup_id": 1714125049901106, "stat_time_day": "2021-10-20 00:00:00"}, "stat_time_day": "2021-10-20 00:00:00", "adgroup_id": 1714125049901106}, "emitted_at": 1697523562647} -{"stream": "ad_groups_reports_daily", "data": {"metrics": {"tt_app_name": "0", "follows": "0", "clicks_on_music_disc": "0", "mobile_app_id": "0", "comments": "0", "real_time_cost_per_result": "0.290", "secondary_goal_result_rate": null, "video_watched_2s": "686", "campaign_name": "Website Traffic20211020010104", "tt_app_id": 0, "cpc": "0.29", "conversion_rate": "0.00", "shares": "0", "real_time_conversion": "0", "cost_per_1000_reached": "4.16", "adgroup_name": "Ad Group20211020010107", "video_play_actions": "5173", "profile_visits": "0", "dpa_target_audience_type": null, "average_video_play_per_user": "1.64", "cpm": "3.43", "average_video_play": "1.52", "promotion_type": "Website", "impressions": "5830", "video_views_p25": "513", "real_time_result": "69", "ctr": "1.18", "cost_per_result": "0.290", "cost_per_secondary_goal_result": null, "video_views_p50": "214", "real_time_app_install": "0", "real_time_cost_per_conversion": "0.00", "cost_per_conversion": "0.00", "result_rate": "1.18", "conversion": "0", "video_views_p75": "140", "clicks": "69", "real_time_conversion_rate": "0.00", "real_time_result_rate": "1.18", "spend": "20.00", "app_install": "0", "campaign_id": 1714125042508817, "likes": "36", "placement_type": "Automatic Placement", "real_time_app_install_cost": "0.00", "secondary_goal_result": null, "video_watched_6s": "180", "video_views_p100": "92", "reach": "4806", "result": "69", "frequency": "1.21"}, "dimensions": {"adgroup_id": 1714125049901106, "stat_time_day": "2021-10-25 00:00:00"}, "stat_time_day": "2021-10-25 00:00:00", "adgroup_id": 1714125049901106}, "emitted_at": 1697523562658} -{"stream": "ad_groups_reports_daily", "data": {"metrics": {"tt_app_name": "0", "follows": "0", "clicks_on_music_disc": "0", "mobile_app_id": "0", "comments": "0", "real_time_cost_per_result": "0.500", "secondary_goal_result_rate": null, "video_watched_2s": "436", "campaign_name": "Website Traffic20211020010104", "tt_app_id": 0, "cpc": "0.50", "conversion_rate": "0.00", "shares": "0", "real_time_conversion": "0", "cost_per_1000_reached": "5.52", "adgroup_name": "Ad Group20211020010107", "video_play_actions": "3852", "profile_visits": "0", "dpa_target_audience_type": null, "average_video_play_per_user": "1.50", "cpm": "4.55", "average_video_play": "1.41", "promotion_type": "Website", "impressions": "4394", "video_views_p25": "306", "real_time_result": "40", "ctr": "0.91", "cost_per_result": "0.500", "cost_per_secondary_goal_result": null, "video_views_p50": "130", "real_time_app_install": "0", "real_time_cost_per_conversion": "0.00", "cost_per_conversion": "0.00", "result_rate": "0.91", "conversion": "0", "video_views_p75": "85", "clicks": "40", "real_time_conversion_rate": "0.00", "real_time_result_rate": "0.91", "spend": "20.00", "app_install": "0", "campaign_id": 1714125042508817, "likes": "13", "placement_type": "Automatic Placement", "real_time_app_install_cost": "0.00", "secondary_goal_result": null, "video_watched_6s": "104", "video_views_p100": "66", "reach": "3621", "result": "40", "frequency": "1.21"}, "dimensions": {"adgroup_id": 1714125049901106, "stat_time_day": "2021-10-29 00:00:00"}, "stat_time_day": "2021-10-29 00:00:00", "adgroup_id": 1714125049901106}, "emitted_at": 1697523562666} -{"stream": "ad_groups_reports_lifetime", "data": {"dimensions": {"adgroup_id": 1709487015460898}, "metrics": {"cpc": "0.00", "video_views_p100": "0", "spend": "0.00", "app_install": "0", "real_time_result": "0", "tt_app_id": 0, "cost_per_result": "0.000", "real_time_conversion_rate": "0.00", "profile_visits": "0", "ctr": "0.00", "shares": "0", "real_time_app_install": "0", "real_time_app_install_cost": "0.00", "result_rate": "0.00", "video_watched_2s": "0", "video_play_actions": "0", "mobile_app_id": "0", "adgroup_name": "Ad Group20210830062028", "video_watched_6s": "0", "frequency": "0.00", "placement_type": "TikTok,News Feed App Series,Helo,Pangle", "real_time_conversion": "0", "cost_per_conversion": "0.00", "impressions": "0", "secondary_goal_result_rate": null, "secondary_goal_result": null, "result": "0", "clicks_on_music_disc": "0", "tt_app_name": "0", "video_views_p25": "0", "comments": "0", "real_time_cost_per_conversion": "0.00", "cost_per_secondary_goal_result": null, "cpm": "0.00", "conversion": "0", "real_time_cost_per_result": "0.000", "reach": "0", "average_video_play_per_user": "0.00", "promotion_type": "Website", "real_time_result_rate": "0.00", "conversion_rate": "0.00", "cost_per_1000_reached": "0.00", "video_views_p50": "0", "average_video_play": "0.00", "clicks": "0", "follows": "0", "dpa_target_audience_type": null, "campaign_name": "Website Traffic20210830061428", "campaign_id": 1709487018151954, "likes": "0", "video_views_p75": "0"}, "adgroup_id": 1709487015460898}, "emitted_at": 1697530005485} -{"stream": "ad_groups_reports_lifetime", "data": {"dimensions": {"adgroup_id": 1709487015460898}, "metrics": {"dpa_target_audience_type": null, "campaign_id": 1709487018151954, "real_time_cost_per_result": "0.000", "promotion_type": "Website", "comments": "0", "result_rate": "0.00", "secondary_goal_result": null, "video_views_p25": "0", "cost_per_1000_reached": "0.00", "video_views_p75": "0", "average_video_play": "0.00", "mobile_app_id": "0", "video_watched_6s": "0", "clicks_on_music_disc": "0", "average_video_play_per_user": "0.00", "cost_per_result": "0.000", "campaign_name": "Website Traffic20210830061428", "real_time_app_install": "0", "real_time_result": "0", "secondary_goal_result_rate": null, "real_time_conversion_rate": "0.00", "shares": "0", "clicks": "0", "app_install": "0", "profile_visits": "0", "follows": "0", "impressions": "0", "spend": "0.00", "reach": "0", "placement_type": "TikTok,News Feed App Series,Helo,Pangle", "tt_app_id": 0, "real_time_app_install_cost": "0.00", "cost_per_secondary_goal_result": null, "cost_per_conversion": "0.00", "result": "0", "real_time_conversion": "0", "real_time_cost_per_conversion": "0.00", "cpc": "0.00", "video_views_p50": "0", "cpm": "0.00", "ctr": "0.00", "real_time_result_rate": "0.00", "video_views_p100": "0", "conversion": "0", "video_play_actions": "0", "adgroup_name": "Ad Group20210830062028", "conversion_rate": "0.00", "frequency": "0.00", "likes": "0", "tt_app_name": "0", "video_watched_2s": "0"}, "adgroup_id": 1709487015460898}, "emitted_at": 1697530006343} -{"stream": "ad_groups_reports_lifetime", "data": {"metrics": {"ctr": "0.00", "spend": "0.00", "video_watched_2s": "0", "video_views_p75": "0", "cpc": "0.00", "follows": "0", "impressions": "0", "video_views_p25": "0", "real_time_conversion_rate": "0.00", "real_time_app_install": "0", "clicks": "0", "reach": "0", "video_play_actions": "0", "frequency": "0.00", "real_time_cost_per_result": "0.000", "likes": "0", "real_time_result": "0", "real_time_app_install_cost": "0.00", "video_views_p100": "0", "app_install": "0", "real_time_conversion": "0", "cost_per_secondary_goal_result": null, "dpa_target_audience_type": null, "promotion_type": "Website", "adgroup_name": "Ad Group20210830062028", "real_time_result_rate": "0.00", "campaign_id": 1709487018151954, "profile_visits": "0", "cost_per_conversion": "0.00", "video_views_p50": "0", "conversion_rate": "0.00", "real_time_cost_per_conversion": "0.00", "cost_per_1000_reached": "0.00", "placement_type": "TikTok,News Feed App Series,Helo,Pangle", "comments": "0", "secondary_goal_result_rate": null, "secondary_goal_result": null, "mobile_app_id": "0", "result": "0", "clicks_on_music_disc": "0", "campaign_name": "Website Traffic20210830061428", "cost_per_result": "0.000", "shares": "0", "tt_app_name": "0", "average_video_play_per_user": "0.00", "tt_app_id": 0, "conversion": "0", "cpm": "0.00", "average_video_play": "0.00", "video_watched_6s": "0", "result_rate": "0.00"}, "dimensions": {"adgroup_id": 1709487015460898}, "adgroup_id": 1709487015460898}, "emitted_at": 1697530007221} -{"stream": "campaigns_reports_daily", "data": {"dimensions": {"stat_time_day": "2021-10-27 00:00:00", "campaign_id": 1714125042508817}, "metrics": {"video_watched_2s": "493", "cost_per_1000_reached": "5.23", "follows": "0", "real_time_app_install": "0", "reach": "3822", "shares": "0", "comments": "0", "cpc": "0.39", "campaign_name": "Website Traffic20211020010104", "video_views_p75": "108", "likes": "18", "real_time_app_install_cost": "0.00", "video_views_p50": "164", "video_views_p25": "355", "video_views_p100": "76", "average_video_play_per_user": "1.61", "profile_visits": "0", "video_watched_6s": "132", "video_play_actions": "4179", "ctr": "1.09", "cpm": "4.26", "average_video_play": "1.48", "clicks": "51", "frequency": "1.23", "clicks_on_music_disc": "0", "impressions": "4696", "spend": "20.00", "app_install": "0"}, "stat_time_day": "2021-10-27 00:00:00", "campaign_id": 1714125042508817}, "emitted_at": 1697523621228} -{"stream": "campaigns_reports_daily", "data": {"dimensions": {"stat_time_day": "2021-10-22 00:00:00", "campaign_id": 1714125042508817}, "metrics": {"video_watched_2s": "390", "cost_per_1000_reached": "6.88", "follows": "0", "real_time_app_install": "0", "reach": "2908", "shares": "0", "comments": "0", "cpc": "0.48", "campaign_name": "Website Traffic20211020010104", "video_views_p75": "74", "likes": "17", "real_time_app_install_cost": "0.00", "video_views_p50": "112", "video_views_p25": "277", "video_views_p100": "59", "average_video_play_per_user": "1.57", "profile_visits": "0", "video_watched_6s": "92", "video_play_actions": "3118", "ctr": "1.19", "cpm": "5.68", "average_video_play": "1.46", "clicks": "42", "frequency": "1.21", "clicks_on_music_disc": "0", "impressions": "3520", "spend": "20.00", "app_install": "0"}, "stat_time_day": "2021-10-22 00:00:00", "campaign_id": 1714125042508817}, "emitted_at": 1697523621237} -{"stream": "campaigns_reports_daily", "data": {"dimensions": {"stat_time_day": "2021-10-28 00:00:00", "campaign_id": 1714125042508817}, "metrics": {"video_watched_2s": "471", "cost_per_1000_reached": "5.08", "follows": "0", "real_time_app_install": "0", "reach": "3938", "shares": "0", "comments": "0", "cpc": "0.42", "campaign_name": "Website Traffic20211020010104", "video_views_p75": "100", "likes": "18", "real_time_app_install_cost": "0.00", "video_views_p50": "144", "video_views_p25": "328", "video_views_p100": "70", "average_video_play_per_user": "1.54", "profile_visits": "0", "video_watched_6s": "120", "video_play_actions": "4253", "ctr": "1.00", "cpm": "4.18", "average_video_play": "1.42", "clicks": "48", "frequency": "1.22", "clicks_on_music_disc": "0", "impressions": "4787", "spend": "20.00", "app_install": "0"}, "stat_time_day": "2021-10-28 00:00:00", "campaign_id": 1714125042508817}, "emitted_at": 1697523621244} -{"stream": "campaigns_reports_lifetime", "data": {"metrics": {"follows": "0", "clicks_on_music_disc": "0", "comments": "0", "video_watched_2s": "0", "campaign_name": "Website Traffic20210830061428", "cpc": "0.00", "shares": "0", "cost_per_1000_reached": "0.00", "video_play_actions": "0", "profile_visits": "0", "average_video_play_per_user": "0.00", "cpm": "0.00", "average_video_play": "0.00", "impressions": "0", "video_views_p25": "0", "ctr": "0.00", "video_views_p50": "0", "real_time_app_install": "0", "video_views_p75": "0", "clicks": "0", "spend": "0.00", "app_install": "0", "likes": "0", "real_time_app_install_cost": "0.00", "video_watched_6s": "0", "video_views_p100": "0", "reach": "0", "frequency": "0.00"}, "dimensions": {"campaign_id": 1709487018151954}, "campaign_id": 1709487018151954}, "emitted_at": 1697523645022} -{"stream": "campaigns_reports_lifetime", "data": {"metrics": {"frequency": "0.00", "impressions": "0", "clicks_on_music_disc": "0", "cpm": "0.00", "campaign_name": "Website Traffic20210830061428", "video_play_actions": "0", "spend": "0.00", "shares": "0", "profile_visits": "0", "follows": "0", "cost_per_1000_reached": "0.00", "video_views_p50": "0", "ctr": "0.00", "cpc": "0.00", "video_views_p100": "0", "video_views_p25": "0", "real_time_app_install": "0", "likes": "0", "clicks": "0", "video_watched_2s": "0", "video_watched_6s": "0", "app_install": "0", "video_views_p75": "0", "real_time_app_install_cost": "0.00", "reach": "0", "average_video_play_per_user": "0.00", "comments": "0", "average_video_play": "0.00"}, "dimensions": {"campaign_id": 1709487018151954}, "campaign_id": 1709487018151954}, "emitted_at": 1697523646109} -{"stream": "campaigns_reports_lifetime", "data": {"dimensions": {"campaign_id": 1709487018151954}, "metrics": {"reach": "0", "average_video_play_per_user": "0.00", "comments": "0", "video_views_p25": "0", "spend": "0.00", "video_views_p100": "0", "real_time_app_install": "0", "follows": "0", "video_views_p50": "0", "cpc": "0.00", "real_time_app_install_cost": "0.00", "profile_visits": "0", "video_play_actions": "0", "video_watched_6s": "0", "frequency": "0.00", "likes": "0", "app_install": "0", "impressions": "0", "video_watched_2s": "0", "clicks": "0", "cpm": "0.00", "cost_per_1000_reached": "0.00", "average_video_play": "0.00", "shares": "0", "campaign_name": "Website Traffic20210830061428", "ctr": "0.00", "clicks_on_music_disc": "0", "video_views_p75": "0"}, "campaign_id": 1709487018151954}, "emitted_at": 1697523647161} -{"stream": "advertisers_reports_daily", "data": {"metrics": {"ctr": "1.00", "shares": "0", "comments": "0", "voucher_spend": "0.00", "impressions": "4787", "likes": "18", "real_time_app_install": "0", "video_play_actions": "4253", "profile_visits": "0", "real_time_app_install_cost": "0.00", "clicks_on_music_disc": "0", "cost_per_1000_reached": "5.08", "video_views_p75": "100", "app_install": "0", "follows": "0", "clicks": "48", "average_video_play_per_user": "1.54", "spend": "20.00", "average_video_play": "1.42", "cpc": "0.42", "cash_spend": "20.00", "cpm": "4.18", "video_watched_6s": "120", "video_watched_2s": "471", "video_views_p50": "144", "reach": "3938", "video_views_p100": "70", "video_views_p25": "328", "frequency": "1.22"}, "dimensions": {"advertiser_id": 7002238017842757633, "stat_time_day": "2021-10-28 00:00:00"}, "stat_time_day": "2021-10-28 00:00:00", "advertiser_id": 7002238017842757633}, "emitted_at": 1697523698059} -{"stream": "advertisers_reports_daily", "data": {"metrics": {"ctr": "1.64", "shares": "0", "comments": "0", "voucher_spend": "0.00", "impressions": "4077", "likes": "19", "real_time_app_install": "0", "video_play_actions": "3590", "profile_visits": "0", "real_time_app_install_cost": "0.00", "clicks_on_music_disc": "0", "cost_per_1000_reached": "6.02", "video_views_p75": "95", "app_install": "0", "follows": "0", "clicks": "67", "average_video_play_per_user": "1.65", "spend": "20.00", "average_video_play": "1.53", "cpc": "0.30", "cash_spend": "20.00", "cpm": "4.91", "video_watched_6s": "124", "video_watched_2s": "463", "video_views_p50": "146", "reach": "3322", "video_views_p100": "65", "video_views_p25": "338", "frequency": "1.23"}, "dimensions": {"advertiser_id": 7002238017842757633, "stat_time_day": "2021-10-23 00:00:00"}, "stat_time_day": "2021-10-23 00:00:00", "advertiser_id": 7002238017842757633}, "emitted_at": 1697523698068} -{"stream": "advertisers_reports_daily", "data": {"metrics": {"ctr": "1.23", "shares": "0", "comments": "1", "voucher_spend": "0.00", "impressions": "3750", "likes": "25", "real_time_app_install": "0", "video_play_actions": "3344", "profile_visits": "0", "real_time_app_install_cost": "0.00", "clicks_on_music_disc": "0", "cost_per_1000_reached": "6.41", "video_views_p75": "90", "app_install": "0", "follows": "0", "clicks": "46", "average_video_play_per_user": "1.61", "spend": "20.00", "average_video_play": "1.50", "cpc": "0.43", "cash_spend": "20.00", "cpm": "5.33", "video_watched_6s": "112", "video_watched_2s": "413", "video_views_p50": "142", "reach": "3119", "video_views_p100": "71", "video_views_p25": "297", "frequency": "1.20"}, "dimensions": {"advertiser_id": 7002238017842757633, "stat_time_day": "2021-10-26 00:00:00"}, "stat_time_day": "2021-10-26 00:00:00", "advertiser_id": 7002238017842757633}, "emitted_at": 1697523698075} -{"stream": "advertisers_reports_lifetime", "data": {"metrics": {"ctr": "1.12", "impressions": "66691", "cpm": "4.20", "video_views_p25": "7364", "cost_per_1000_reached": "5.55", "follows": "0", "likes": "328", "real_time_app_install_cost": "0.00", "clicks_on_music_disc": "0", "video_watched_2s": "6941", "video_views_p50": "2665", "video_views_p100": "1205", "profile_visits": "0", "cpc": "0.37", "clicks": "750", "reach": "50418", "video_play_actions": "59390", "app_install": "0", "comments": "2", "video_watched_6s": "1838", "spend": "280.00", "shares": "0", "video_views_p75": "1636", "average_video_play_per_user": "1.68", "average_video_play": "1.43", "real_time_app_install": "0", "frequency": "1.32"}, "dimensions": {"advertiser_id": 7002238017842757633}, "advertiser_id": 7002238017842757633}, "emitted_at": 1697523727503} -{"stream": "ads_audience_reports_daily", "data": {"metrics": {"campaign_id": 1714125042508817, "cpc": "0.51", "real_time_conversion": "0", "spend": "1.53", "cost_per_conversion": "0.00", "real_time_cost_per_result": "0.510", "real_time_result": "3", "real_time_conversion_rate": "0.00", "ad_text": "Airbyte - data portabioolity platform - from anywhere to anywhere!", "result_rate": "0.98", "cpm": "5.02", "impressions": "305", "tt_app_id": "0", "campaign_name": "Website Traffic20211020010104", "conversion": "0", "dpa_target_audience_type": null, "ad_name": "Optimized Version 4_202110201102_2021-10-20 11:02:00", "mobile_app_id": "0", "conversion_rate": "0.00", "clicks": "3", "placement_type": "Automatic Placement", "adgroup_id": 1714125049901106, "result": "3", "real_time_result_rate": "0.98", "cost_per_result": "0.510", "adgroup_name": "Ad Group20211020010107", "promotion_type": "Website", "real_time_cost_per_conversion": "0.00", "tt_app_name": "0", "ctr": "0.98"}, "dimensions": {"gender": "MALE", "stat_time_day": "2021-10-29 00:00:00", "ad_id": 1714125051115569, "age": "AGE_45_54"}, "stat_time_day": "2021-10-29 00:00:00", "ad_id": 1714125051115569, "gender": "MALE", "age": "AGE_45_54"}, "emitted_at": 1697523762526} -{"stream": "ads_audience_reports_daily", "data": {"metrics": {"campaign_id": 1714073078669329, "cpc": "0.00", "real_time_conversion": "0", "spend": "0.00", "cost_per_conversion": "0.00", "real_time_cost_per_result": "0.000", "real_time_result": "0", "real_time_conversion_rate": "0.00", "ad_text": "Open Source ETL", "result_rate": "0.00", "cpm": "0.00", "impressions": "1", "tt_app_id": "0", "campaign_name": "Website Traffic20211019110444", "conversion": "0", "dpa_target_audience_type": null, "ad_name": "Optimized Version 1_202110192111_2021-10-19 21:11:39", "mobile_app_id": "0", "conversion_rate": "0.00", "clicks": "0", "placement_type": "Automatic Placement", "adgroup_id": 1714073022392322, "result": "0", "real_time_result_rate": "0.00", "cost_per_result": "0.000", "adgroup_name": "Ad Group20211019111040", "promotion_type": "Website", "real_time_cost_per_conversion": "0.00", "tt_app_name": "0", "ctr": "0.00"}, "dimensions": {"gender": "MALE", "stat_time_day": "2021-10-20 00:00:00", "ad_id": 1714073085256738, "age": "AGE_18_24"}, "stat_time_day": "2021-10-20 00:00:00", "ad_id": 1714073085256738, "gender": "MALE", "age": "AGE_18_24"}, "emitted_at": 1697523762528} -{"stream": "ads_audience_reports_daily", "data": {"metrics": {"campaign_id": 1714125042508817, "cpc": "0.46", "real_time_conversion": "0", "spend": "2.28", "cost_per_conversion": "0.00", "real_time_cost_per_result": "0.456", "real_time_result": "5", "real_time_conversion_rate": "0.00", "ad_text": "Airbyte - data portabioolity platform - from anywhere to anywhere!", "result_rate": "1.10", "cpm": "5.02", "impressions": "454", "tt_app_id": "0", "campaign_name": "Website Traffic20211020010104", "conversion": "0", "dpa_target_audience_type": null, "ad_name": "Optimized Version 4_202110201102_2021-10-20 11:02:00", "mobile_app_id": "0", "conversion_rate": "0.00", "clicks": "5", "placement_type": "Automatic Placement", "adgroup_id": 1714125049901106, "result": "5", "real_time_result_rate": "1.10", "cost_per_result": "0.456", "adgroup_name": "Ad Group20211020010107", "promotion_type": "Website", "real_time_cost_per_conversion": "0.00", "tt_app_name": "0", "ctr": "1.10"}, "dimensions": {"gender": "MALE", "stat_time_day": "2021-10-21 00:00:00", "ad_id": 1714125051115569, "age": "AGE_35_44"}, "stat_time_day": "2021-10-21 00:00:00", "ad_id": 1714125051115569, "gender": "MALE", "age": "AGE_35_44"}, "emitted_at": 1697523762530} -{"stream": "ad_group_audience_reports_daily", "data": {"metrics": {"real_time_conversion_rate": "0.00", "cost_per_result": "0.401", "real_time_conversion": "0", "spend": "4.81", "conversion": "0", "clicks": "12", "dpa_target_audience_type": null, "adgroup_name": "Ad Group20211020010107", "mobile_app_id": "0", "campaign_id": 1714125042508817, "cpm": "7.66", "tt_app_name": "0", "impressions": "628", "real_time_cost_per_result": "0.401", "tt_app_id": "0", "placement_type": "Automatic Placement", "promotion_type": "Website", "real_time_cost_per_conversion": "0.00", "cost_per_conversion": "0.00", "real_time_result": "12", "campaign_name": "Website Traffic20211020010104", "cpc": "0.40", "real_time_result_rate": "1.91", "conversion_rate": "0.00", "ctr": "1.91", "result": "12", "result_rate": "1.91"}, "dimensions": {"age": "AGE_35_44", "gender": "FEMALE", "stat_time_day": "2021-10-26 00:00:00", "adgroup_id": 1714125049901106}, "stat_time_day": "2021-10-26 00:00:00", "adgroup_id": 1714125049901106, "gender": "FEMALE", "age": "AGE_35_44"}, "emitted_at": 1697523818029} -{"stream": "ad_group_audience_reports_daily", "data": {"metrics": {"real_time_conversion_rate": "0.00", "cost_per_result": "0.474", "real_time_conversion": "0", "spend": "5.69", "conversion": "0", "clicks": "12", "dpa_target_audience_type": null, "adgroup_name": "Ad Group20211020010107", "mobile_app_id": "0", "campaign_id": 1714125042508817, "cpm": "3.91", "tt_app_name": "0", "impressions": "1455", "real_time_cost_per_result": "0.474", "tt_app_id": "0", "placement_type": "Automatic Placement", "promotion_type": "Website", "real_time_cost_per_conversion": "0.00", "cost_per_conversion": "0.00", "real_time_result": "12", "campaign_name": "Website Traffic20211020010104", "cpc": "0.47", "real_time_result_rate": "0.82", "conversion_rate": "0.00", "ctr": "0.82", "result": "12", "result_rate": "0.82"}, "dimensions": {"age": "AGE_25_34", "gender": "FEMALE", "stat_time_day": "2021-10-29 00:00:00", "adgroup_id": 1714125049901106}, "stat_time_day": "2021-10-29 00:00:00", "adgroup_id": 1714125049901106, "gender": "FEMALE", "age": "AGE_25_34"}, "emitted_at": 1697523818031} -{"stream": "ad_group_audience_reports_daily", "data": {"metrics": {"real_time_conversion_rate": "0.00", "cost_per_result": "0.480", "real_time_conversion": "0", "spend": "1.92", "conversion": "0", "clicks": "4", "dpa_target_audience_type": null, "adgroup_name": "Ad Group20211020010107", "mobile_app_id": "0", "campaign_id": 1714125042508817, "cpm": "7.84", "tt_app_name": "0", "impressions": "245", "real_time_cost_per_result": "0.480", "tt_app_id": "0", "placement_type": "Automatic Placement", "promotion_type": "Website", "real_time_cost_per_conversion": "0.00", "cost_per_conversion": "0.00", "real_time_result": "4", "campaign_name": "Website Traffic20211020010104", "cpc": "0.48", "real_time_result_rate": "1.63", "conversion_rate": "0.00", "ctr": "1.63", "result": "4", "result_rate": "1.63"}, "dimensions": {"age": "AGE_45_54", "gender": "MALE", "stat_time_day": "2021-10-22 00:00:00", "adgroup_id": 1714125049901106}, "stat_time_day": "2021-10-22 00:00:00", "adgroup_id": 1714125049901106, "gender": "MALE", "age": "AGE_45_54"}, "emitted_at": 1697523818032} -{"stream": "campaigns_audience_reports_by_country_daily", "data": {"metrics": {"campaign_name": "Website Traffic20211019110444", "cpc": "0.31", "cpm": "4.10", "impressions": "4874", "ctr": "1.33", "clicks": "65", "spend": "20.00"}, "dimensions": {"country_code": "US", "stat_time_day": "2021-10-19 00:00:00", "campaign_id": 1714073078669329}, "stat_time_day": "2021-10-19 00:00:00", "campaign_id": 1714073078669329, "country_code": "US"}, "emitted_at": 1697523869094} -{"stream": "campaigns_audience_reports_by_country_daily", "data": {"metrics": {"campaign_name": "Website Traffic20211020010104", "cpc": "0.38", "cpm": "5.31", "impressions": "3765", "ctr": "1.41", "clicks": "53", "spend": "20.00"}, "dimensions": {"country_code": "US", "stat_time_day": "2021-10-20 00:00:00", "campaign_id": 1714125042508817}, "stat_time_day": "2021-10-20 00:00:00", "campaign_id": 1714125042508817, "country_code": "US"}, "emitted_at": 1697523869108} -{"stream": "campaigns_audience_reports_by_country_daily", "data": {"metrics": {"campaign_name": "Website Traffic20211019110444", "cpc": "0.00", "cpm": "0.00", "impressions": "12", "ctr": "0.00", "clicks": "0", "spend": "0.00"}, "dimensions": {"country_code": "US", "stat_time_day": "2021-10-20 00:00:00", "campaign_id": 1714073078669329}, "stat_time_day": "2021-10-20 00:00:00", "campaign_id": 1714073078669329, "country_code": "US"}, "emitted_at": 1697523869119} -{"stream": "advertisers_audience_reports_daily", "data": {"dimensions": {"age": "AGE_18_24", "stat_time_day": "2021-10-19 00:00:00", "advertiser_id": 7002238017842757633, "gender": "MALE"}, "metrics": {"cpc": "0.38", "spend": "2.26", "ctr": "1.79", "impressions": "335", "cpm": "6.75", "clicks": "6"}, "stat_time_day": "2021-10-19 00:00:00", "advertiser_id": 7002238017842757633, "gender": "MALE", "age": "AGE_18_24"}, "emitted_at": 1697523928076} -{"stream": "advertisers_audience_reports_daily", "data": {"dimensions": {"age": "AGE_35_44", "stat_time_day": "2021-10-19 00:00:00", "advertiser_id": 7002238017842757633, "gender": "MALE"}, "metrics": {"cpc": "0.00", "spend": "0.00", "ctr": "2.86", "impressions": "35", "cpm": "0.00", "clicks": "1"}, "stat_time_day": "2021-10-19 00:00:00", "advertiser_id": 7002238017842757633, "gender": "MALE", "age": "AGE_35_44"}, "emitted_at": 1697523928080} -{"stream": "advertisers_audience_reports_daily", "data": {"dimensions": {"age": "AGE_13_17", "stat_time_day": "2021-10-19 00:00:00", "advertiser_id": 7002238017842757633, "gender": "FEMALE"}, "metrics": {"cpc": "0.29", "spend": "8.32", "ctr": "1.35", "impressions": "2146", "cpm": "3.88", "clicks": "29"}, "stat_time_day": "2021-10-19 00:00:00", "advertiser_id": 7002238017842757633, "gender": "FEMALE", "age": "AGE_13_17"}, "emitted_at": 1697523928083} -{"stream": "advertisers_audience_reports_lifetime", "data": {"dimensions": {"gender": "MALE", "age": "AGE_35_44", "advertiser_id": 7002238017842757633}, "metrics": {"cpc": "0.36", "spend": "31.56", "impressions": "6897", "cpm": "4.58", "clicks": "87", "ctr": "1.26"}, "advertiser_id": 7002238017842757633, "gender": "MALE", "age": "AGE_35_44"}, "emitted_at": 1697523955238} -{"stream": "advertisers_audience_reports_lifetime", "data": {"dimensions": {"gender": "FEMALE", "age": "AGE_55_100", "advertiser_id": 7002238017842757633}, "metrics": {"cpc": "0.00", "spend": "0.00", "impressions": "17", "cpm": "0.00", "clicks": "0", "ctr": "0.00"}, "advertiser_id": 7002238017842757633, "gender": "FEMALE", "age": "AGE_55_100"}, "emitted_at": 1697523955242} -{"stream": "advertisers_audience_reports_lifetime", "data": {"dimensions": {"gender": "MALE", "age": "AGE_13_17", "advertiser_id": 7002238017842757633}, "metrics": {"cpc": "0.32", "spend": "7.13", "impressions": "1818", "cpm": "3.92", "clicks": "22", "ctr": "1.21"}, "advertiser_id": 7002238017842757633, "gender": "MALE", "age": "AGE_13_17"}, "emitted_at": 1697523955244} +{"stream": "advertisers", "data": {"role": "ROLE_ADVERTISER", "create_time": 1630055520, "license_url": null, "promotion_center_province": null, "promotion_center_city": null, "advertiser_id": 7001035076276387841, "country": "RU", "timezone": "Europe/Moscow", "promotion_area": "0", "license_no": null, "advertiser_account_type": "AUCTION", "status": "STATUS_LIMIT", "display_timezone": "Europe/Moscow", "balance": 0, "name": "Airbyte0827", "language": "", "company": "Airbyte", "currency": "RUB", "brand": null, "license_province": null, "address": null, "license_city": null, "email": "i***************@**********", "rejection_reason": "1:Dear customer,\nWe've detected that your account has not been logged into for a long period of time, which could cause a security risk. In order to improve platform security, your account has been temporarily suspended. For further information or if you have any questions, please submit a ticket under \"Account Review\" in the Business Support Center to raise an appeal.\nThank you for your understanding.\n,endtime:2031-12-31 07:32:13", "description": null, "telephone_number": "+18023****63", "contacter": "Ai***te", "industry": "291905", "cellphone_number": "+18023****63"}, "emitted_at": 1697638716453} +{"stream": "ads", "data": {"tracking_pixel_id": 0, "ad_text": "airbyte", "avatar_icon_web_uri": "ad-site-i18n-sg/202110205d0d488b68ead898460bad74", "image_ids": ["tos-alisg-p-0051c001-sg/oEnxmUxanQZbiaZzA9eAQfNdQBb1lzBIDRgVDL"], "operation_status": "ENABLE", "identity_type": "CUSTOMIZED_USER", "fallback_type": "UNSET", "advertiser_id": 7002238017842757633, "deeplink_type": "NORMAL", "ad_texts": null, "profile_image_url": "https://p21-ad-sg.ibyteimg.com/obj/ad-site-i18n-sg/202110205d0d488b68ead898460bad74", "viewability_vast_url": null, "secondary_status": "AD_STATUS_CAMPAIGN_DISABLE", "brand_safety_postbid_partner": "UNSET", "playable_url": "", "optimization_event": null, "ad_format": "SINGLE_VIDEO", "viewability_postbid_partner": "UNSET", "vast_moat_enabled": false, "adgroup_name": "Ad group 20231016073545", "music_id": null, "landing_page_url": "https://airbyte.com/?utm_source=tiktok&utm_medium=paid-social&utm_campaign=_tiktok_ads", "page_id": null, "impression_tracking_url": null, "app_name": "", "modify_time": "2023-10-16 14:53:29", "card_id": null, "creative_authorized": true, "display_name": "Airbyte", "campaign_name": "UTM_PARAMSTraffic20231016173112", "is_new_structure": true, "is_aco": false, "call_to_action_id": "7290567590173363202", "creative_type": null, "campaign_id": 1779923887578145, "adgroup_id": 1779923881029666, "ad_name": "Video16974675946002_Heartwarming Atmosphere Pops with Piano Main(827850)_2023-10-16 07:46:35", "deeplink": "", "ad_id": 1779923894511665, "identity_id": "7244085252222255106", "brand_safety_vast_url": null, "landing_page_urls": null, "create_time": "2023-10-16 14:48:30", "click_tracking_url": null, "video_id": "v10033g50000ckmkpnbc77ucmin3t88g"}, "emitted_at": 1697638720822} +{"stream": "ads", "data": {"tracking_pixel_id": 0, "ad_text": "airbyte", "avatar_icon_web_uri": "ad-site-i18n-sg/202110205d0d488b68ead898460bad74", "image_ids": ["tos-alisg-p-0051c001-sg/oEaaNUsAlIQwDnBGmBLecBzDQGnACMA0Xgbfb5"], "operation_status": "ENABLE", "identity_type": "CUSTOMIZED_USER", "fallback_type": "UNSET", "advertiser_id": 7002238017842757633, "deeplink_type": "NORMAL", "ad_texts": null, "profile_image_url": "https://p21-ad-sg.ibyteimg.com/obj/ad-site-i18n-sg/202110205d0d488b68ead898460bad74", "viewability_vast_url": null, "secondary_status": "AD_STATUS_CAMPAIGN_DISABLE", "brand_safety_postbid_partner": "UNSET", "playable_url": "", "optimization_event": null, "ad_format": "SINGLE_VIDEO", "viewability_postbid_partner": "UNSET", "vast_moat_enabled": false, "adgroup_name": "Ad group 20231016073545", "music_id": null, "landing_page_url": "https://airbyte.com/?utm_source=tiktok&utm_medium=paid-social&utm_campaign=_tiktok_ads", "page_id": null, "impression_tracking_url": null, "app_name": "", "modify_time": "2023-10-16 14:53:29", "card_id": null, "creative_authorized": true, "display_name": "Airbyte", "campaign_name": "UTM_PARAMSTraffic20231016173112", "is_new_structure": true, "is_aco": false, "call_to_action_id": "7290567668606716929", "creative_type": null, "campaign_id": 1779923887578145, "adgroup_id": 1779923881029666, "ad_name": "Video16974675945951_Whale, sea, electronica(859574)_2023-10-16 07:46:35", "deeplink": "", "ad_id": 1779923894506609, "identity_id": "7244085252222255106", "brand_safety_vast_url": null, "landing_page_urls": null, "create_time": "2023-10-16 14:48:30", "click_tracking_url": null, "video_id": "v10033g50000ckmkplrc77u30n4dkdb0"}, "emitted_at": 1697638720826} +{"stream": "ads", "data": {"ad_text": "Open-source\ndata integration for modern data teams", "avatar_icon_web_uri": "ad-site-i18n-sg/202203285d0de5c114d0690a462bb6a4", "image_ids": ["v0201/7f371ff6f0764f8b8ef4f37d7b980d50"], "operation_status": "ENABLE", "identity_type": "CUSTOMIZED_USER", "fallback_type": "UNSET", "advertiser_id": 7002238017842757633, "deeplink_type": "NORMAL", "ad_texts": null, "profile_image_url": "https://p21-ad-sg.ibyteimg.com/obj/ad-site-i18n-sg/202203285d0de5c114d0690a462bb6a4", "viewability_vast_url": null, "secondary_status": "AD_STATUS_CAMPAIGN_DISABLE", "brand_safety_postbid_partner": "UNSET", "playable_url": "", "optimization_event": null, "ad_format": "SINGLE_VIDEO", "viewability_postbid_partner": "UNSET", "vast_moat_enabled": false, "adgroup_name": "AdGroupVadim", "music_id": null, "landing_page_url": "https://airbyte.com", "page_id": null, "impression_tracking_url": null, "app_name": "", "modify_time": "2023-10-17 08:50:32", "card_id": null, "creative_authorized": false, "display_name": "airbyte", "campaign_name": "CampaignVadimTraffic", "is_new_structure": true, "is_aco": false, "call_to_action_id": "7080120957230238722", "creative_type": null, "campaign_id": 1728545382536225, "adgroup_id": 1728545385226289, "ad_name": "AdVadim-Optimized Version 3_202203281449_2022-03-28 05:03:44", "deeplink": "", "ad_id": 1728545390695442, "identity_id": "7080121820963422209", "brand_safety_vast_url": null, "landing_page_urls": null, "create_time": "2022-03-28 12:09:09", "click_tracking_url": null, "video_id": "v10033g50000c90q1d3c77ub6e96fvo0"}, "emitted_at": 1697638720829} +{"stream": "ad_groups", "data": {"languages": [], "purchased_reach": null, "placement_type": "PLACEMENT_TYPE_NORMAL", "deep_cpa_bid": 0, "create_time": "2021-08-30 03:25:04", "billing_event": "CPC", "pacing": "PACING_MODE_SMOOTH", "creative_material_mode": "CUSTOM", "next_day_retention": null, "comment_disabled": false, "ios14_quota_type": "UNOCCUPIED", "frequency_schedule": null, "rf_purchased_type": null, "keywords": null, "modify_time": "2022-01-02 07:32:13", "bid_price": 0, "campaign_name": "Website Traffic20210830061428", "is_hfss": false, "operating_systems": [], "is_new_structure": true, "schedule_start_time": "2021-08-30 03:20:28", "network_types": [], "category_exclusion_ids": [], "secondary_optimization_event": null, "delivery_mode": null, "auto_targeting_enabled": false, "app_download_url": null, "excluded_custom_actions": [], "operation_status": "ENABLE", "share_disabled": false, "deep_bid_type": null, "optimization_event": null, "schedule_infos": null, "app_type": null, "bid_display_mode": "CPMV", "excluded_audience_ids": [], "included_custom_actions": [], "inventory_filter_enabled": false, "bid_type": "BID_TYPE_NO_BID", "schedule_end_time": "2031-08-28 03:20:28", "age_groups": null, "schedule_type": "SCHEDULE_FROM_NOW", "video_download_disabled": false, "advertiser_id": 7001035076276387841, "skip_learning_phase": 0, "actions": [], "pixel_id": null, "location_ids": [2017370], "scheduled_budget": 0, "purchased_impression": null, "rf_estimated_frequency": null, "conversion_window": null, "brand_safety_type": "NO_BRAND_SAFETY", "audience_ids": [], "budget": 2000, "adgroup_name": "Ad Group20210830062028", "campaign_id": 1709487018151954, "budget_mode": "BUDGET_MODE_DAY", "gender": "GENDER_UNLIMITED", "adgroup_app_profile_page_state": null, "device_price_ranges": [], "placements": ["PLACEMENT_TIKTOK", "PLACEMENT_TOPBUZZ", "PLACEMENT_HELO", "PLACEMENT_PANGLE"], "category_id": 0, "is_smart_performance_campaign": false, "adgroup_id": 1709487015460898, "app_id": null, "rf_estimated_cpr": null, "search_result_enabled": false, "interest_category_ids": [], "dayparting": "111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111", "secondary_status": "ADVERTISER_ACCOUNT_PUNISH", "device_model_ids": [], "conversion_bid_price": 0, "statistic_type": null, "promotion_type": "WEBSITE", "feed_type": null, "frequency": null, "brand_safety_partner": null, "interest_keyword_ids": [], "optimization_goal": "CLICK"}, "emitted_at": 1697638722756} +{"stream": "ad_groups", "data": {"device_price_ranges": [], "rf_estimated_cpr": null, "statistic_type": null, "next_day_retention": null, "schedule_type": "SCHEDULE_FROM_NOW", "conversion_window": null, "network_types": [], "audience_ids": [], "inventory_filter_enabled": false, "creative_material_mode": "CUSTOM", "app_id": null, "purchased_impression": null, "search_result_enabled": true, "frequency": null, "scheduled_budget": 0, "languages": [], "included_custom_actions": [], "rf_estimated_frequency": null, "dayparting": "111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111", "brand_safety_partner": null, "comment_disabled": false, "feed_type": null, "placements": ["PLACEMENT_TIKTOK", "PLACEMENT_GLOBAL_APP_BUNDLE", "PLACEMENT_PANGLE"], "operating_systems": [], "campaign_name": "UTM_PARAMSTraffic20231016173112", "bid_price": 0, "category_exclusion_ids": [], "isp_ids": [], "spending_power": "ALL", "secondary_optimization_event": null, "modify_time": "2023-10-16 21:47:26", "adgroup_name": "Ad group 20231016073545", "operation_status": "ENABLE", "interest_keyword_ids": [], "adgroup_id": 1779923881029666, "contextual_tag_ids": [], "app_type": null, "schedule_infos": null, "auto_targeting_enabled": false, "optimization_event": null, "schedule_start_time": "2023-10-16 15:35:45", "ios14_quota_type": "UNOCCUPIED", "household_income": [], "secondary_status": "ADGROUP_STATUS_CAMPAIGN_DISABLE", "is_new_structure": true, "frequency_schedule": null, "schedule_end_time": "2033-10-13 15:35:45", "rf_purchased_type": null, "campaign_id": 1779923887578145, "device_model_ids": [], "zipcode_ids": [], "is_smart_performance_campaign": false, "bid_display_mode": "CPMV", "deep_bid_type": null, "keywords": null, "budget_mode": "BUDGET_MODE_DYNAMIC_DAILY_BUDGET", "skip_learning_phase": 0, "deep_cpa_bid": 0, "is_hfss": false, "pacing": "PACING_MODE_SMOOTH", "interest_category_ids": [], "delivery_mode": null, "brand_safety_type": "NO_BRAND_SAFETY", "gender": "GENDER_UNLIMITED", "budget": 30, "video_download_disabled": false, "promotion_type": "WEBSITE", "advertiser_id": 7002238017842757633, "excluded_custom_actions": [], "actions": [], "placement_type": "PLACEMENT_TYPE_AUTOMATIC", "adgroup_app_profile_page_state": null, "age_groups": null, "optimization_goal": "CLICK", "billing_event": "CPC", "bid_type": "BID_TYPE_NO_BID", "purchased_reach": null, "pixel_id": null, "category_id": 0, "excluded_audience_ids": [], "conversion_bid_price": 0, "create_time": "2023-10-16 14:48:28", "location_ids": [6252001], "app_download_url": null, "share_disabled": false}, "emitted_at": 1697638724129} +{"stream": "ad_groups", "data": {"device_price_ranges": [], "rf_estimated_cpr": null, "statistic_type": null, "next_day_retention": null, "schedule_type": "SCHEDULE_FROM_NOW", "conversion_window": null, "network_types": [], "audience_ids": [], "inventory_filter_enabled": false, "creative_material_mode": "CUSTOM", "app_id": null, "purchased_impression": null, "search_result_enabled": false, "frequency": null, "scheduled_budget": 0, "languages": [], "included_custom_actions": [], "rf_estimated_frequency": null, "dayparting": "111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111", "brand_safety_partner": null, "comment_disabled": false, "feed_type": null, "placements": ["PLACEMENT_TIKTOK", "PLACEMENT_TOPBUZZ", "PLACEMENT_PANGLE"], "operating_systems": [], "campaign_name": "CampaignVadimTraffic", "bid_price": 0, "category_exclusion_ids": [], "secondary_optimization_event": null, "modify_time": "2023-10-17 14:31:10", "adgroup_name": "AdGroupVadim", "operation_status": "ENABLE", "interest_keyword_ids": [], "adgroup_id": 1728545385226289, "app_type": null, "schedule_infos": null, "auto_targeting_enabled": false, "optimization_event": null, "schedule_start_time": "2022-03-28 13:02:23", "ios14_quota_type": "UNOCCUPIED", "secondary_status": "ADGROUP_STATUS_CAMPAIGN_DISABLE", "is_new_structure": true, "frequency_schedule": null, "schedule_end_time": "2032-03-25 13:02:23", "rf_purchased_type": null, "campaign_id": 1728545382536225, "device_model_ids": [], "is_smart_performance_campaign": false, "bid_display_mode": "CPMV", "deep_bid_type": null, "keywords": null, "budget_mode": "BUDGET_MODE_DAY", "skip_learning_phase": 0, "deep_cpa_bid": 0, "is_hfss": false, "pacing": "PACING_MODE_SMOOTH", "interest_category_ids": [15], "delivery_mode": null, "brand_safety_type": "NO_BRAND_SAFETY", "gender": "GENDER_UNLIMITED", "budget": 20, "video_download_disabled": false, "promotion_type": "WEBSITE", "advertiser_id": 7002238017842757633, "excluded_custom_actions": [], "actions": [], "placement_type": "PLACEMENT_TYPE_AUTOMATIC", "adgroup_app_profile_page_state": null, "age_groups": ["AGE_25_34", "AGE_35_44"], "optimization_goal": "CLICK", "billing_event": "CPC", "bid_type": "BID_TYPE_NO_BID", "purchased_reach": null, "pixel_id": null, "category_id": 0, "excluded_audience_ids": [], "conversion_bid_price": 0, "create_time": "2022-03-28 12:09:07", "location_ids": [6252001], "app_download_url": null, "share_disabled": false}, "emitted_at": 1697638724135} +{"stream": "campaigns", "data": {"create_time": "2023-10-16 14:48:26", "campaign_name": "UTM_PARAMSTraffic20231016173112", "is_new_structure": true, "budget": 0, "objective_type": "TRAFFIC", "advertiser_id": 7002238017842757633, "is_search_campaign": false, "campaign_type": "REGULAR_CAMPAIGN", "objective": "LANDING_PAGE", "operation_status": "DISABLE", "app_promotion_type": "UNSET", "rf_campaign_type": "STANDARD", "modify_time": "2023-10-17 14:33:35", "roas_bid": 0, "budget_mode": "BUDGET_MODE_INFINITE", "secondary_status": "CAMPAIGN_STATUS_DISABLE", "is_smart_performance_campaign": false, "deep_bid_type": null, "campaign_id": 1779923887578145}, "emitted_at": 1697638726084} +{"stream": "campaigns", "data": {"create_time": "2022-03-28 12:09:05", "campaign_name": "CampaignVadimTraffic", "is_new_structure": true, "budget": 0, "objective_type": "TRAFFIC", "advertiser_id": 7002238017842757633, "is_search_campaign": false, "campaign_type": "REGULAR_CAMPAIGN", "objective": "LANDING_PAGE", "operation_status": "DISABLE", "modify_time": "2022-03-30 21:23:52", "roas_bid": 0, "budget_mode": "BUDGET_MODE_INFINITE", "secondary_status": "CAMPAIGN_STATUS_DISABLE", "is_smart_performance_campaign": false, "deep_bid_type": null, "campaign_id": 1728545382536225}, "emitted_at": 1697638726088} +{"stream": "campaigns", "data": {"create_time": "2021-10-20 08:04:04", "campaign_name": "Website Traffic20211020010104", "is_new_structure": true, "budget": 0, "objective_type": "TRAFFIC", "advertiser_id": 7002238017842757633, "is_search_campaign": false, "campaign_type": "REGULAR_CAMPAIGN", "objective": "LANDING_PAGE", "operation_status": "DISABLE", "modify_time": "2022-03-24 12:08:29", "roas_bid": 0, "budget_mode": "BUDGET_MODE_INFINITE", "secondary_status": "CAMPAIGN_STATUS_DISABLE", "is_smart_performance_campaign": false, "deep_bid_type": null, "campaign_id": 1714125042508817}, "emitted_at": 1697638726090} +{"stream": "advertiser_ids", "data": {"advertiser_id": 7001035076276387841, "advertiser_name": "Airbyte0827"}, "emitted_at": 1697638726111} +{"stream": "advertiser_ids", "data": {"advertiser_id": 7001040009704833026, "advertiser_name": "Airbyte08270"}, "emitted_at": 1697638726112} +{"stream": "advertiser_ids", "data": {"advertiser_id": 7002238017842757633, "advertiser_name": "Airbyte0830"}, "emitted_at": 1697638726112} +{"stream": "ads_reports_daily", "data": {"metrics": {"video_watched_6s": "180", "impressions": "5830", "adgroup_name": "Ad Group20211020010107", "video_play_actions": "5173", "conversion": "0", "cost_per_result": "0.290", "dpa_target_audience_type": null, "vta_purchase": "0", "result_rate": "1.18", "onsite_shopping": "0", "cpm": "3.43", "total_onsite_shopping_value": "0.00", "video_views_p75": "140", "total_complete_payment_rate": "0.00", "follows": "0", "ad_name": "Optimized Version 4_202110201102_2021-10-20 11:02:00", "clicks": "69", "result": "69", "video_watched_2s": "686", "cost_per_secondary_goal_result": null, "vta_conversion": "0", "campaign_name": "Website Traffic20211020010104", "real_time_conversion_rate": "0.00", "average_video_play_per_user": "1.64", "clicks_on_music_disc": "0", "conversion_rate": "0.00", "campaign_id": 1714125042508817, "total_purchase_value": "0.00", "real_time_result_rate": "1.18", "cost_per_1000_reached": "4.16", "real_time_cost_per_conversion": "0.00", "video_views_p50": "214", "adgroup_id": 1714125049901106, "ad_text": "Airbyte - data portabioolity platform - from anywhere to anywhere!", "video_views_p25": "513", "comments": "0", "real_time_app_install": "0", "real_time_conversion": "0", "video_views_p100": "92", "cta_purchase": "0", "value_per_complete_payment": "0.00", "real_time_cost_per_result": "0.290", "real_time_app_install_cost": "0.00", "cpc": "0.29", "secondary_goal_result_rate": null, "total_pageview": "0", "real_time_result": "69", "placement_type": "Automatic Placement", "complete_payment": "0", "cost_per_conversion": "0.00", "promotion_type": "Website", "tt_app_name": "0", "mobile_app_id": "0", "secondary_goal_result": null, "ctr": "1.18", "shares": "0", "likes": "36", "spend": "20.00", "reach": "4806", "frequency": "1.21", "app_install": "0", "profile_visits": "0", "average_video_play": "1.52", "tt_app_id": 0, "cta_conversion": "0"}, "dimensions": {"stat_time_day": "2021-10-25 00:00:00", "ad_id": 1714125051115569}, "stat_time_day": "2021-10-25 00:00:00", "ad_id": 1714125051115569}, "emitted_at": 1697638764286} +{"stream": "ads_reports_daily", "data": {"metrics": {"video_watched_6s": "106", "impressions": "3765", "adgroup_name": "Ad Group20211020010107", "video_play_actions": "3344", "conversion": "0", "cost_per_result": "0.377", "dpa_target_audience_type": null, "vta_purchase": "0", "result_rate": "1.41", "onsite_shopping": "0", "cpm": "5.31", "total_onsite_shopping_value": "0.00", "video_views_p75": "74", "total_complete_payment_rate": "0.00", "follows": "0", "ad_name": "Optimized Version 4_202110201102_2021-10-20 11:02:00", "clicks": "53", "result": "53", "video_watched_2s": "408", "cost_per_secondary_goal_result": null, "vta_conversion": "0", "campaign_name": "Website Traffic20211020010104", "real_time_conversion_rate": "0.00", "average_video_play_per_user": "1.55", "clicks_on_music_disc": "0", "conversion_rate": "0.00", "campaign_id": 1714125042508817, "total_purchase_value": "0.00", "real_time_result_rate": "1.41", "cost_per_1000_reached": "6.38", "real_time_cost_per_conversion": "0.00", "video_views_p50": "130", "adgroup_id": 1714125049901106, "ad_text": "Airbyte - data portabioolity platform - from anywhere to anywhere!", "video_views_p25": "295", "comments": "1", "real_time_app_install": "0", "real_time_conversion": "0", "video_views_p100": "52", "cta_purchase": "0", "value_per_complete_payment": "0.00", "real_time_cost_per_result": "0.377", "real_time_app_install_cost": "0.00", "cpc": "0.38", "secondary_goal_result_rate": null, "total_pageview": "0", "real_time_result": "53", "placement_type": "Automatic Placement", "complete_payment": "0", "cost_per_conversion": "0.00", "promotion_type": "Website", "tt_app_name": "0", "mobile_app_id": "0", "secondary_goal_result": null, "ctr": "1.41", "shares": "0", "likes": "36", "spend": "20.00", "reach": "3134", "frequency": "1.20", "app_install": "0", "profile_visits": "0", "average_video_play": "1.45", "tt_app_id": 0, "cta_conversion": "0"}, "dimensions": {"stat_time_day": "2021-10-20 00:00:00", "ad_id": 1714125051115569}, "stat_time_day": "2021-10-20 00:00:00", "ad_id": 1714125051115569}, "emitted_at": 1697638764298} +{"stream": "ads_reports_daily", "data": {"metrics": {"video_watched_6s": "112", "impressions": "3750", "adgroup_name": "Ad Group20211020010107", "video_play_actions": "3344", "conversion": "0", "cost_per_result": "0.435", "dpa_target_audience_type": null, "vta_purchase": "0", "result_rate": "1.23", "onsite_shopping": "0", "cpm": "5.33", "total_onsite_shopping_value": "0.00", "video_views_p75": "90", "total_complete_payment_rate": "0.00", "follows": "0", "ad_name": "Optimized Version 4_202110201102_2021-10-20 11:02:00", "clicks": "46", "result": "46", "video_watched_2s": "413", "cost_per_secondary_goal_result": null, "vta_conversion": "0", "campaign_name": "Website Traffic20211020010104", "real_time_conversion_rate": "0.00", "average_video_play_per_user": "1.61", "clicks_on_music_disc": "0", "conversion_rate": "0.00", "campaign_id": 1714125042508817, "total_purchase_value": "0.00", "real_time_result_rate": "1.23", "cost_per_1000_reached": "6.41", "real_time_cost_per_conversion": "0.00", "video_views_p50": "142", "adgroup_id": 1714125049901106, "ad_text": "Airbyte - data portabioolity platform - from anywhere to anywhere!", "video_views_p25": "297", "comments": "1", "real_time_app_install": "0", "real_time_conversion": "0", "video_views_p100": "71", "cta_purchase": "0", "value_per_complete_payment": "0.00", "real_time_cost_per_result": "0.435", "real_time_app_install_cost": "0.00", "cpc": "0.43", "secondary_goal_result_rate": null, "total_pageview": "0", "real_time_result": "46", "placement_type": "Automatic Placement", "complete_payment": "0", "cost_per_conversion": "0.00", "promotion_type": "Website", "tt_app_name": "0", "mobile_app_id": "0", "secondary_goal_result": null, "ctr": "1.23", "shares": "0", "likes": "25", "spend": "20.00", "reach": "3119", "frequency": "1.20", "app_install": "0", "profile_visits": "0", "average_video_play": "1.50", "tt_app_id": 0, "cta_conversion": "0"}, "dimensions": {"stat_time_day": "2021-10-26 00:00:00", "ad_id": 1714125051115569}, "stat_time_day": "2021-10-26 00:00:00", "ad_id": 1714125051115569}, "emitted_at": 1697638764305} +{"stream": "ads_reports_lifetime", "data": {"metrics": {"video_watched_6s": "0", "impressions": "0", "adgroup_name": "Ad Group20210830062028", "video_play_actions": "0", "conversion": "0", "cost_per_result": "0.000", "dpa_target_audience_type": null, "vta_purchase": "0", "result_rate": "0.00", "onsite_shopping": "0", "cpm": "0.00", "total_onsite_shopping_value": "0.00", "video_views_p75": "0", "total_complete_payment_rate": "0.00", "follows": "0", "ad_name": "Optimized Version 1_202108300622_2021-08-30 06:22:01", "clicks": "0", "result": "0", "video_watched_2s": "0", "cost_per_secondary_goal_result": null, "vta_conversion": "0", "campaign_name": "Website Traffic20210830061428", "real_time_conversion_rate": "0.00", "average_video_play_per_user": "0.00", "clicks_on_music_disc": "0", "conversion_rate": "0.00", "campaign_id": 1709487018151954, "total_purchase_value": "0.00", "real_time_result_rate": "0.00", "cost_per_1000_reached": "0.00", "real_time_cost_per_conversion": "0.00", "video_views_p50": "0", "adgroup_id": 1709487015460898, "ad_text": "Airbyte is open source ETl platform", "video_views_p25": "0", "comments": "0", "real_time_app_install": "0", "real_time_conversion": "0", "video_views_p100": "0", "cta_purchase": "0", "value_per_complete_payment": "0.00", "real_time_cost_per_result": "0.000", "real_time_app_install_cost": "0.00", "cpc": "0.00", "secondary_goal_result_rate": null, "total_pageview": "0", "real_time_result": "0", "placement_type": "TikTok,News Feed App Series,Helo,Pangle", "complete_payment": "0", "cost_per_conversion": "0.00", "promotion_type": "Website", "tt_app_name": "0", "mobile_app_id": "0", "secondary_goal_result": null, "ctr": "0.00", "shares": "0", "likes": "0", "spend": "0.00", "reach": "0", "frequency": "0.00", "app_install": "0", "profile_visits": "0", "average_video_play": "0.00", "tt_app_id": 0, "cta_conversion": "0"}, "dimensions": {"ad_id": 1709487056762929}, "ad_id": 1709487056762929}, "emitted_at": 1697638795461} +{"stream": "ads_reports_lifetime", "data": {"dimensions": {"ad_id": 1709487056762929}, "metrics": {"average_video_play": "0.00", "vta_purchase": "0", "ctr": "0.00", "real_time_app_install_cost": "0.00", "secondary_goal_result": null, "cpc": "0.00", "secondary_goal_result_rate": null, "cpm": "0.00", "value_per_complete_payment": "0.00", "placement_type": "TikTok,News Feed App Series,Helo,Pangle", "campaign_name": "Website Traffic20210830061428", "clicks": "0", "cost_per_secondary_goal_result": null, "conversion": "0", "video_watched_2s": "0", "impressions": "0", "real_time_conversion": "0", "video_views_p75": "0", "follows": "0", "spend": "0.00", "tt_app_name": "0", "mobile_app_id": "0", "cta_purchase": "0", "cost_per_1000_reached": "0.00", "real_time_result": "0", "conversion_rate": "0.00", "real_time_result_rate": "0.00", "video_play_actions": "0", "shares": "0", "result": "0", "onsite_shopping": "0", "video_views_p50": "0", "total_purchase_value": "0.00", "adgroup_name": "Ad Group20210830062028", "real_time_app_install": "0", "average_video_play_per_user": "0.00", "result_rate": "0.00", "app_install": "0", "campaign_id": 1709487018151954, "complete_payment": "0", "comments": "0", "real_time_conversion_rate": "0.00", "total_pageview": "0", "real_time_cost_per_conversion": "0.00", "clicks_on_music_disc": "0", "vta_conversion": "0", "dpa_target_audience_type": null, "cta_conversion": "0", "cost_per_conversion": "0.00", "frequency": "0.00", "promotion_type": "Website", "video_views_p25": "0", "total_complete_payment_rate": "0.00", "ad_text": "Airbyte is open source ETl platform", "ad_name": "Optimized Version 1_202108300622_2021-08-30 06:22:01", "reach": "0", "total_onsite_shopping_value": "0.00", "likes": "0", "real_time_cost_per_result": "0.000", "cost_per_result": "0.000", "tt_app_id": 0, "adgroup_id": 1709487015460898, "profile_visits": "0", "video_views_p100": "0", "video_watched_6s": "0"}, "ad_id": 1709487056762929}, "emitted_at": 1697638796831} +{"stream": "ads_reports_lifetime", "data": {"dimensions": {"ad_id": 1709487056762929}, "metrics": {"placement_type": "TikTok,News Feed App Series,Helo,Pangle", "total_purchase_value": "0.00", "campaign_id": 1709487018151954, "average_video_play": "0.00", "total_complete_payment_rate": "0.00", "average_video_play_per_user": "0.00", "ad_text": "Airbyte is open source ETl platform", "video_views_p25": "0", "value_per_complete_payment": "0.00", "total_onsite_shopping_value": "0.00", "profile_visits": "0", "real_time_app_install_cost": "0.00", "video_views_p50": "0", "video_watched_6s": "0", "tt_app_id": 0, "real_time_conversion_rate": "0.00", "cost_per_conversion": "0.00", "dpa_target_audience_type": null, "result_rate": "0.00", "cta_conversion": "0", "comments": "0", "clicks": "0", "ctr": "0.00", "video_views_p100": "0", "secondary_goal_result_rate": null, "frequency": "0.00", "ad_name": "Optimized Version 1_202108300622_2021-08-30 06:22:01", "video_play_actions": "0", "spend": "0.00", "real_time_result": "0", "tt_app_name": "0", "adgroup_id": 1709487015460898, "complete_payment": "0", "cpc": "0.00", "real_time_conversion": "0", "real_time_cost_per_conversion": "0.00", "app_install": "0", "promotion_type": "Website", "video_views_p75": "0", "impressions": "0", "cost_per_secondary_goal_result": null, "conversion_rate": "0.00", "real_time_app_install": "0", "secondary_goal_result": null, "vta_purchase": "0", "campaign_name": "Website Traffic20210830061428", "video_watched_2s": "0", "conversion": "0", "cta_purchase": "0", "result": "0", "clicks_on_music_disc": "0", "likes": "0", "adgroup_name": "Ad Group20210830062028", "mobile_app_id": "0", "cost_per_1000_reached": "0.00", "cost_per_result": "0.000", "real_time_result_rate": "0.00", "total_pageview": "0", "reach": "0", "shares": "0", "cpm": "0.00", "vta_conversion": "0", "real_time_cost_per_result": "0.000", "follows": "0", "onsite_shopping": "0"}, "ad_id": 1709487056762929}, "emitted_at": 1697638797967} +{"stream": "ad_groups_reports_daily", "data": {"metrics": {"frequency": "1.20", "likes": "36", "cpc": "0.38", "tt_app_name": "0", "shares": "0", "secondary_goal_result_rate": null, "clicks": "53", "placement_type": "Automatic Placement", "ctr": "1.41", "result": "53", "cost_per_conversion": "0.00", "video_views_p50": "130", "follows": "0", "conversion": "0", "average_video_play_per_user": "1.55", "cpm": "5.31", "comments": "1", "real_time_cost_per_conversion": "0.00", "adgroup_name": "Ad Group20211020010107", "real_time_result": "53", "video_views_p25": "295", "clicks_on_music_disc": "0", "average_video_play": "1.45", "video_play_actions": "3344", "conversion_rate": "0.00", "secondary_goal_result": null, "cost_per_result": "0.377", "video_views_p75": "74", "tt_app_id": 0, "mobile_app_id": "0", "promotion_type": "Website", "video_views_p100": "52", "campaign_id": 1714125042508817, "dpa_target_audience_type": null, "real_time_conversion_rate": "0.00", "real_time_result_rate": "1.41", "real_time_app_install": "0", "video_watched_2s": "408", "video_watched_6s": "106", "result_rate": "1.41", "cost_per_1000_reached": "6.38", "campaign_name": "Website Traffic20211020010104", "reach": "3134", "impressions": "3765", "real_time_app_install_cost": "0.00", "spend": "20.00", "app_install": "0", "real_time_cost_per_result": "0.377", "real_time_conversion": "0", "profile_visits": "0", "cost_per_secondary_goal_result": null}, "dimensions": {"adgroup_id": 1714125049901106, "stat_time_day": "2021-10-20 00:00:00"}, "stat_time_day": "2021-10-20 00:00:00", "adgroup_id": 1714125049901106}, "emitted_at": 1697638842331} +{"stream": "ad_groups_reports_daily", "data": {"metrics": {"frequency": "1.21", "likes": "36", "cpc": "0.29", "tt_app_name": "0", "shares": "0", "secondary_goal_result_rate": null, "clicks": "69", "placement_type": "Automatic Placement", "ctr": "1.18", "result": "69", "cost_per_conversion": "0.00", "video_views_p50": "214", "follows": "0", "conversion": "0", "average_video_play_per_user": "1.64", "cpm": "3.43", "comments": "0", "real_time_cost_per_conversion": "0.00", "adgroup_name": "Ad Group20211020010107", "real_time_result": "69", "video_views_p25": "513", "clicks_on_music_disc": "0", "average_video_play": "1.52", "video_play_actions": "5173", "conversion_rate": "0.00", "secondary_goal_result": null, "cost_per_result": "0.290", "video_views_p75": "140", "tt_app_id": 0, "mobile_app_id": "0", "promotion_type": "Website", "video_views_p100": "92", "campaign_id": 1714125042508817, "dpa_target_audience_type": null, "real_time_conversion_rate": "0.00", "real_time_result_rate": "1.18", "real_time_app_install": "0", "video_watched_2s": "686", "video_watched_6s": "180", "result_rate": "1.18", "cost_per_1000_reached": "4.16", "campaign_name": "Website Traffic20211020010104", "reach": "4806", "impressions": "5830", "real_time_app_install_cost": "0.00", "spend": "20.00", "app_install": "0", "real_time_cost_per_result": "0.290", "real_time_conversion": "0", "profile_visits": "0", "cost_per_secondary_goal_result": null}, "dimensions": {"adgroup_id": 1714125049901106, "stat_time_day": "2021-10-25 00:00:00"}, "stat_time_day": "2021-10-25 00:00:00", "adgroup_id": 1714125049901106}, "emitted_at": 1697638842342} +{"stream": "ad_groups_reports_daily", "data": {"metrics": {"frequency": "1.21", "likes": "13", "cpc": "0.50", "tt_app_name": "0", "shares": "0", "secondary_goal_result_rate": null, "clicks": "40", "placement_type": "Automatic Placement", "ctr": "0.91", "result": "40", "cost_per_conversion": "0.00", "video_views_p50": "130", "follows": "0", "conversion": "0", "average_video_play_per_user": "1.50", "cpm": "4.55", "comments": "0", "real_time_cost_per_conversion": "0.00", "adgroup_name": "Ad Group20211020010107", "real_time_result": "40", "video_views_p25": "306", "clicks_on_music_disc": "0", "average_video_play": "1.41", "video_play_actions": "3852", "conversion_rate": "0.00", "secondary_goal_result": null, "cost_per_result": "0.500", "video_views_p75": "85", "tt_app_id": 0, "mobile_app_id": "0", "promotion_type": "Website", "video_views_p100": "66", "campaign_id": 1714125042508817, "dpa_target_audience_type": null, "real_time_conversion_rate": "0.00", "real_time_result_rate": "0.91", "real_time_app_install": "0", "video_watched_2s": "436", "video_watched_6s": "104", "result_rate": "0.91", "cost_per_1000_reached": "5.52", "campaign_name": "Website Traffic20211020010104", "reach": "3621", "impressions": "4394", "real_time_app_install_cost": "0.00", "spend": "20.00", "app_install": "0", "real_time_cost_per_result": "0.500", "real_time_conversion": "0", "profile_visits": "0", "cost_per_secondary_goal_result": null}, "dimensions": {"adgroup_id": 1714125049901106, "stat_time_day": "2021-10-29 00:00:00"}, "stat_time_day": "2021-10-29 00:00:00", "adgroup_id": 1714125049901106}, "emitted_at": 1697638842350} +{"stream": "ad_groups_reports_lifetime", "data": {"metrics": {"video_watched_2s": "0", "clicks": "0", "promotion_type": "Website", "cost_per_result": "0.000", "video_views_p75": "0", "follows": "0", "adgroup_name": "Ad Group20210830062028", "spend": "0.00", "average_video_play_per_user": "0.00", "dpa_target_audience_type": null, "reach": "0", "frequency": "0.00", "clicks_on_music_disc": "0", "profile_visits": "0", "real_time_result_rate": "0.00", "likes": "0", "real_time_result": "0", "conversion_rate": "0.00", "cost_per_secondary_goal_result": null, "real_time_app_install_cost": "0.00", "impressions": "0", "video_play_actions": "0", "video_watched_6s": "0", "average_video_play": "0.00", "campaign_name": "Website Traffic20210830061428", "real_time_conversion": "0", "ctr": "0.00", "video_views_p25": "0", "cpc": "0.00", "secondary_goal_result_rate": null, "result_rate": "0.00", "video_views_p50": "0", "shares": "0", "cpm": "0.00", "app_install": "0", "placement_type": "TikTok,News Feed App Series,Helo,Pangle", "cost_per_1000_reached": "0.00", "mobile_app_id": "0", "real_time_app_install": "0", "real_time_cost_per_result": "0.000", "tt_app_id": 0, "campaign_id": 1709487018151954, "comments": "0", "real_time_cost_per_conversion": "0.00", "real_time_conversion_rate": "0.00", "tt_app_name": "0", "cost_per_conversion": "0.00", "conversion": "0", "secondary_goal_result": null, "video_views_p100": "0", "result": "0"}, "dimensions": {"adgroup_id": 1709487015460898}, "adgroup_id": 1709487015460898}, "emitted_at": 1697638868931} +{"stream": "ad_groups_reports_lifetime", "data": {"metrics": {"cost_per_result": "0.000", "video_views_p50": "0", "impressions": "0", "placement_type": "TikTok,News Feed App Series,Helo,Pangle", "mobile_app_id": "0", "follows": "0", "average_video_play_per_user": "0.00", "comments": "0", "tt_app_id": 0, "promotion_type": "Website", "result": "0", "likes": "0", "cpm": "0.00", "cpc": "0.00", "shares": "0", "frequency": "0.00", "real_time_conversion_rate": "0.00", "campaign_name": "Website Traffic20210830061428", "cost_per_secondary_goal_result": null, "video_play_actions": "0", "conversion": "0", "clicks": "0", "video_watched_6s": "0", "campaign_id": 1709487018151954, "conversion_rate": "0.00", "profile_visits": "0", "secondary_goal_result": null, "tt_app_name": "0", "real_time_result": "0", "real_time_conversion": "0", "video_views_p25": "0", "real_time_cost_per_result": "0.000", "real_time_app_install_cost": "0.00", "real_time_app_install": "0", "secondary_goal_result_rate": null, "video_watched_2s": "0", "video_views_p100": "0", "reach": "0", "dpa_target_audience_type": null, "result_rate": "0.00", "cost_per_1000_reached": "0.00", "ctr": "0.00", "average_video_play": "0.00", "clicks_on_music_disc": "0", "cost_per_conversion": "0.00", "real_time_cost_per_conversion": "0.00", "app_install": "0", "spend": "0.00", "adgroup_name": "Ad Group20210830062028", "real_time_result_rate": "0.00", "video_views_p75": "0"}, "dimensions": {"adgroup_id": 1709487015460898}, "adgroup_id": 1709487015460898}, "emitted_at": 1697638869846} +{"stream": "ad_groups_reports_lifetime", "data": {"dimensions": {"adgroup_id": 1709487015460898}, "metrics": {"likes": "0", "video_watched_2s": "0", "video_views_p75": "0", "conversion_rate": "0.00", "secondary_goal_result_rate": null, "placement_type": "TikTok,News Feed App Series,Helo,Pangle", "cost_per_conversion": "0.00", "frequency": "0.00", "adgroup_name": "Ad Group20210830062028", "video_watched_6s": "0", "tt_app_id": 0, "cpm": "0.00", "spend": "0.00", "reach": "0", "video_play_actions": "0", "app_install": "0", "mobile_app_id": "0", "comments": "0", "result": "0", "average_video_play_per_user": "0.00", "average_video_play": "0.00", "follows": "0", "conversion": "0", "result_rate": "0.00", "video_views_p50": "0", "campaign_name": "Website Traffic20210830061428", "real_time_app_install_cost": "0.00", "video_views_p100": "0", "video_views_p25": "0", "real_time_cost_per_result": "0.000", "clicks": "0", "profile_visits": "0", "tt_app_name": "0", "real_time_conversion": "0", "secondary_goal_result": null, "real_time_cost_per_conversion": "0.00", "ctr": "0.00", "campaign_id": 1709487018151954, "cost_per_secondary_goal_result": null, "real_time_conversion_rate": "0.00", "shares": "0", "cpc": "0.00", "impressions": "0", "promotion_type": "Website", "dpa_target_audience_type": null, "cost_per_1000_reached": "0.00", "clicks_on_music_disc": "0", "cost_per_result": "0.000", "real_time_result": "0", "real_time_result_rate": "0.00", "real_time_app_install": "0"}, "adgroup_id": 1709487015460898}, "emitted_at": 1697638870655} +{"stream": "campaigns_reports_daily", "data": {"metrics": {"spend": "20.00", "reach": "3822", "profile_visits": "0", "comments": "0", "clicks": "51", "average_video_play_per_user": "1.61", "video_views_p75": "108", "real_time_app_install": "0", "app_install": "0", "campaign_name": "Website Traffic20211020010104", "likes": "18", "video_views_p50": "164", "video_watched_2s": "493", "video_views_p100": "76", "average_video_play": "1.48", "cpc": "0.39", "cpm": "4.26", "impressions": "4696", "real_time_app_install_cost": "0.00", "cost_per_1000_reached": "5.23", "frequency": "1.23", "shares": "0", "video_views_p25": "355", "clicks_on_music_disc": "0", "ctr": "1.09", "video_play_actions": "4179", "follows": "0", "video_watched_6s": "132"}, "dimensions": {"stat_time_day": "2021-10-27 00:00:00", "campaign_id": 1714125042508817}, "stat_time_day": "2021-10-27 00:00:00", "campaign_id": 1714125042508817}, "emitted_at": 1697638911261} +{"stream": "campaigns_reports_daily", "data": {"metrics": {"spend": "20.00", "reach": "2908", "profile_visits": "0", "comments": "0", "clicks": "42", "average_video_play_per_user": "1.57", "video_views_p75": "74", "real_time_app_install": "0", "app_install": "0", "campaign_name": "Website Traffic20211020010104", "likes": "17", "video_views_p50": "112", "video_watched_2s": "390", "video_views_p100": "59", "average_video_play": "1.46", "cpc": "0.48", "cpm": "5.68", "impressions": "3520", "real_time_app_install_cost": "0.00", "cost_per_1000_reached": "6.88", "frequency": "1.21", "shares": "0", "video_views_p25": "277", "clicks_on_music_disc": "0", "ctr": "1.19", "video_play_actions": "3118", "follows": "0", "video_watched_6s": "92"}, "dimensions": {"stat_time_day": "2021-10-22 00:00:00", "campaign_id": 1714125042508817}, "stat_time_day": "2021-10-22 00:00:00", "campaign_id": 1714125042508817}, "emitted_at": 1697638911270} +{"stream": "campaigns_reports_daily", "data": {"metrics": {"spend": "20.00", "reach": "3938", "profile_visits": "0", "comments": "0", "clicks": "48", "average_video_play_per_user": "1.54", "video_views_p75": "100", "real_time_app_install": "0", "app_install": "0", "campaign_name": "Website Traffic20211020010104", "likes": "18", "video_views_p50": "144", "video_watched_2s": "471", "video_views_p100": "70", "average_video_play": "1.42", "cpc": "0.42", "cpm": "4.18", "impressions": "4787", "real_time_app_install_cost": "0.00", "cost_per_1000_reached": "5.08", "frequency": "1.22", "shares": "0", "video_views_p25": "328", "clicks_on_music_disc": "0", "ctr": "1.00", "video_play_actions": "4253", "follows": "0", "video_watched_6s": "120"}, "dimensions": {"stat_time_day": "2021-10-28 00:00:00", "campaign_id": 1714125042508817}, "stat_time_day": "2021-10-28 00:00:00", "campaign_id": 1714125042508817}, "emitted_at": 1697638911277} +{"stream": "campaigns_reports_lifetime", "data": {"metrics": {"video_views_p50": "0", "real_time_app_install_cost": "0.00", "video_watched_2s": "0", "shares": "0", "video_views_p100": "0", "likes": "0", "profile_visits": "0", "cpc": "0.00", "reach": "0", "real_time_app_install": "0", "cost_per_1000_reached": "0.00", "video_play_actions": "0", "ctr": "0.00", "video_views_p25": "0", "comments": "0", "frequency": "0.00", "video_watched_6s": "0", "spend": "0.00", "average_video_play_per_user": "0.00", "app_install": "0", "clicks_on_music_disc": "0", "cpm": "0.00", "follows": "0", "video_views_p75": "0", "impressions": "0", "average_video_play": "0.00", "clicks": "0", "campaign_name": "Website Traffic20210830061428"}, "dimensions": {"campaign_id": 1709487018151954}, "campaign_id": 1709487018151954}, "emitted_at": 1697638937946} +{"stream": "campaigns_reports_lifetime", "data": {"dimensions": {"campaign_id": 1709487018151954}, "metrics": {"ctr": "0.00", "video_watched_2s": "0", "app_install": "0", "shares": "0", "real_time_app_install_cost": "0.00", "video_watched_6s": "0", "real_time_app_install": "0", "cpc": "0.00", "cost_per_1000_reached": "0.00", "comments": "0", "spend": "0.00", "video_views_p75": "0", "campaign_name": "Website Traffic20210830061428", "follows": "0", "cpm": "0.00", "clicks_on_music_disc": "0", "video_views_p25": "0", "average_video_play": "0.00", "reach": "0", "frequency": "0.00", "clicks": "0", "video_views_p100": "0", "profile_visits": "0", "impressions": "0", "average_video_play_per_user": "0.00", "video_views_p50": "0", "video_play_actions": "0", "likes": "0"}, "campaign_id": 1709487018151954}, "emitted_at": 1697638939785} +{"stream": "campaigns_reports_lifetime", "data": {"metrics": {"video_views_p50": "0", "average_video_play": "0.00", "clicks_on_music_disc": "0", "real_time_app_install_cost": "0.00", "follows": "0", "profile_visits": "0", "video_play_actions": "0", "reach": "0", "frequency": "0.00", "video_watched_2s": "0", "cpc": "0.00", "spend": "0.00", "comments": "0", "shares": "0", "impressions": "0", "cost_per_1000_reached": "0.00", "average_video_play_per_user": "0.00", "video_views_p25": "0", "video_views_p75": "0", "cpm": "0.00", "real_time_app_install": "0", "ctr": "0.00", "clicks": "0", "video_watched_6s": "0", "campaign_name": "Website Traffic20210830061428", "likes": "0", "app_install": "0", "video_views_p100": "0"}, "dimensions": {"campaign_id": 1709487018151954}, "campaign_id": 1709487018151954}, "emitted_at": 1697638940607} +{"stream": "advertisers_reports_daily", "data": {"metrics": {"video_views_p50": "144", "impressions": "4787", "follows": "0", "average_video_play_per_user": "1.54", "comments": "0", "likes": "18", "cpm": "4.18", "cpc": "0.42", "shares": "0", "frequency": "1.22", "video_play_actions": "4253", "clicks": "48", "video_watched_6s": "120", "profile_visits": "0", "video_views_p25": "328", "real_time_app_install_cost": "0.00", "cash_spend": "20.00", "real_time_app_install": "0", "video_watched_2s": "471", "video_views_p100": "70", "reach": "3938", "voucher_spend": "0.00", "cost_per_1000_reached": "5.08", "ctr": "1.00", "average_video_play": "1.42", "clicks_on_music_disc": "0", "app_install": "0", "spend": "20.00", "video_views_p75": "100"}, "dimensions": {"advertiser_id": 7002238017842757633, "stat_time_day": "2021-10-28 00:00:00"}, "stat_time_day": "2021-10-28 00:00:00", "advertiser_id": 7002238017842757633}, "emitted_at": 1697638993347} +{"stream": "advertisers_reports_daily", "data": {"metrics": {"video_views_p50": "146", "impressions": "4077", "follows": "0", "average_video_play_per_user": "1.65", "comments": "0", "likes": "19", "cpm": "4.91", "cpc": "0.30", "shares": "0", "frequency": "1.23", "video_play_actions": "3590", "clicks": "67", "video_watched_6s": "124", "profile_visits": "0", "video_views_p25": "338", "real_time_app_install_cost": "0.00", "cash_spend": "20.00", "real_time_app_install": "0", "video_watched_2s": "463", "video_views_p100": "65", "reach": "3322", "voucher_spend": "0.00", "cost_per_1000_reached": "6.02", "ctr": "1.64", "average_video_play": "1.53", "clicks_on_music_disc": "0", "app_install": "0", "spend": "20.00", "video_views_p75": "95"}, "dimensions": {"advertiser_id": 7002238017842757633, "stat_time_day": "2021-10-23 00:00:00"}, "stat_time_day": "2021-10-23 00:00:00", "advertiser_id": 7002238017842757633}, "emitted_at": 1697638993356} +{"stream": "advertisers_reports_daily", "data": {"metrics": {"video_views_p50": "142", "impressions": "3750", "follows": "0", "average_video_play_per_user": "1.61", "comments": "1", "likes": "25", "cpm": "5.33", "cpc": "0.43", "shares": "0", "frequency": "1.20", "video_play_actions": "3344", "clicks": "46", "video_watched_6s": "112", "profile_visits": "0", "video_views_p25": "297", "real_time_app_install_cost": "0.00", "cash_spend": "20.00", "real_time_app_install": "0", "video_watched_2s": "413", "video_views_p100": "71", "reach": "3119", "voucher_spend": "0.00", "cost_per_1000_reached": "6.41", "ctr": "1.23", "average_video_play": "1.50", "clicks_on_music_disc": "0", "app_install": "0", "spend": "20.00", "video_views_p75": "90"}, "dimensions": {"advertiser_id": 7002238017842757633, "stat_time_day": "2021-10-26 00:00:00"}, "stat_time_day": "2021-10-26 00:00:00", "advertiser_id": 7002238017842757633}, "emitted_at": 1697638993363} +{"stream": "advertisers_reports_lifetime", "data": {"dimensions": {"advertiser_id": 7002238017842757633}, "metrics": {"video_views_p75": "1636", "average_video_play": "1.43", "cpc": "0.37", "ctr": "1.12", "profile_visits": "0", "app_install": "0", "comments": "2", "clicks": "750", "video_views_p25": "7364", "follows": "0", "real_time_app_install_cost": "0.00", "video_play_actions": "59390", "video_watched_6s": "1838", "reach": "50418", "average_video_play_per_user": "1.68", "cost_per_1000_reached": "5.55", "video_watched_2s": "6941", "real_time_app_install": "0", "shares": "0", "frequency": "1.32", "video_views_p50": "2665", "cpm": "4.20", "likes": "328", "impressions": "66691", "spend": "280.00", "clicks_on_music_disc": "0", "video_views_p100": "1205"}, "advertiser_id": 7002238017842757633}, "emitted_at": 1697639023242} +{"stream": "ads_audience_reports_daily", "data": {"metrics": {"adgroup_name": "Ad Group20211020010107", "mobile_app_id": "0", "placement_type": "Automatic Placement", "ad_name": "Optimized Version 4_202110201102_2021-10-20 11:02:00", "real_time_result_rate": "0.98", "real_time_cost_per_result": "0.510", "campaign_id": 1714125042508817, "ad_text": "Airbyte - data portabioolity platform - from anywhere to anywhere!", "cpc": "0.51", "result_rate": "0.98", "tt_app_id": "0", "ctr": "0.98", "real_time_conversion": "0", "dpa_target_audience_type": null, "real_time_cost_per_conversion": "0.00", "spend": "1.53", "real_time_result": "3", "adgroup_id": 1714125049901106, "result": "3", "cpm": "5.02", "cost_per_result": "0.510", "real_time_conversion_rate": "0.00", "impressions": "305", "clicks": "3", "campaign_name": "Website Traffic20211020010104", "conversion": "0", "promotion_type": "Website", "conversion_rate": "0.00", "cost_per_conversion": "0.00", "tt_app_name": "0"}, "dimensions": {"gender": "MALE", "stat_time_day": "2021-10-29 00:00:00", "age": "AGE_45_54", "ad_id": 1714125051115569}, "stat_time_day": "2021-10-29 00:00:00", "ad_id": 1714125051115569, "gender": "MALE", "age": "AGE_45_54"}, "emitted_at": 1697639061452} +{"stream": "ads_audience_reports_daily", "data": {"metrics": {"adgroup_name": "Ad Group20211019111040", "mobile_app_id": "0", "placement_type": "Automatic Placement", "ad_name": "Optimized Version 1_202110192111_2021-10-19 21:11:39", "real_time_result_rate": "0.00", "real_time_cost_per_result": "0.000", "campaign_id": 1714073078669329, "ad_text": "Open Source ETL", "cpc": "0.00", "result_rate": "0.00", "tt_app_id": "0", "ctr": "0.00", "real_time_conversion": "0", "dpa_target_audience_type": null, "real_time_cost_per_conversion": "0.00", "spend": "0.00", "real_time_result": "0", "adgroup_id": 1714073022392322, "result": "0", "cpm": "0.00", "cost_per_result": "0.000", "real_time_conversion_rate": "0.00", "impressions": "1", "clicks": "0", "campaign_name": "Website Traffic20211019110444", "conversion": "0", "promotion_type": "Website", "conversion_rate": "0.00", "cost_per_conversion": "0.00", "tt_app_name": "0"}, "dimensions": {"gender": "MALE", "stat_time_day": "2021-10-20 00:00:00", "age": "AGE_18_24", "ad_id": 1714073085256738}, "stat_time_day": "2021-10-20 00:00:00", "ad_id": 1714073085256738, "gender": "MALE", "age": "AGE_18_24"}, "emitted_at": 1697639061462} +{"stream": "ads_audience_reports_daily", "data": {"metrics": {"adgroup_name": "Ad Group20211020010107", "mobile_app_id": "0", "placement_type": "Automatic Placement", "ad_name": "Optimized Version 4_202110201102_2021-10-20 11:02:00", "real_time_result_rate": "1.10", "real_time_cost_per_result": "0.456", "campaign_id": 1714125042508817, "ad_text": "Airbyte - data portabioolity platform - from anywhere to anywhere!", "cpc": "0.46", "result_rate": "1.10", "tt_app_id": "0", "ctr": "1.10", "real_time_conversion": "0", "dpa_target_audience_type": null, "real_time_cost_per_conversion": "0.00", "spend": "2.28", "real_time_result": "5", "adgroup_id": 1714125049901106, "result": "5", "cpm": "5.02", "cost_per_result": "0.456", "real_time_conversion_rate": "0.00", "impressions": "454", "clicks": "5", "campaign_name": "Website Traffic20211020010104", "conversion": "0", "promotion_type": "Website", "conversion_rate": "0.00", "cost_per_conversion": "0.00", "tt_app_name": "0"}, "dimensions": {"gender": "MALE", "stat_time_day": "2021-10-21 00:00:00", "age": "AGE_35_44", "ad_id": 1714125051115569}, "stat_time_day": "2021-10-21 00:00:00", "ad_id": 1714125051115569, "gender": "MALE", "age": "AGE_35_44"}, "emitted_at": 1697639061470} +{"stream": "ad_group_audience_reports_daily", "data": {"metrics": {"result_rate": "1.91", "tt_app_name": "0", "mobile_app_id": "0", "impressions": "628", "campaign_name": "Website Traffic20211020010104", "conversion_rate": "0.00", "cpc": "0.40", "real_time_cost_per_conversion": "0.00", "spend": "4.81", "placement_type": "Automatic Placement", "cost_per_conversion": "0.00", "real_time_conversion": "0", "adgroup_name": "Ad Group20211020010107", "result": "12", "real_time_cost_per_result": "0.401", "promotion_type": "Website", "conversion": "0", "cost_per_result": "0.401", "dpa_target_audience_type": null, "cpm": "7.66", "real_time_result": "12", "tt_app_id": "0", "real_time_result_rate": "1.91", "campaign_id": 1714125042508817, "ctr": "1.91", "clicks": "12", "real_time_conversion_rate": "0.00"}, "dimensions": {"adgroup_id": 1714125049901106, "stat_time_day": "2021-10-26 00:00:00", "gender": "FEMALE", "age": "AGE_35_44"}, "stat_time_day": "2021-10-26 00:00:00", "adgroup_id": 1714125049901106, "gender": "FEMALE", "age": "AGE_35_44"}, "emitted_at": 1697639121750} +{"stream": "ad_group_audience_reports_daily", "data": {"metrics": {"result_rate": "0.82", "tt_app_name": "0", "mobile_app_id": "0", "impressions": "1455", "campaign_name": "Website Traffic20211020010104", "conversion_rate": "0.00", "cpc": "0.47", "real_time_cost_per_conversion": "0.00", "spend": "5.69", "placement_type": "Automatic Placement", "cost_per_conversion": "0.00", "real_time_conversion": "0", "adgroup_name": "Ad Group20211020010107", "result": "12", "real_time_cost_per_result": "0.474", "promotion_type": "Website", "conversion": "0", "cost_per_result": "0.474", "dpa_target_audience_type": null, "cpm": "3.91", "real_time_result": "12", "tt_app_id": "0", "real_time_result_rate": "0.82", "campaign_id": 1714125042508817, "ctr": "0.82", "clicks": "12", "real_time_conversion_rate": "0.00"}, "dimensions": {"adgroup_id": 1714125049901106, "stat_time_day": "2021-10-29 00:00:00", "gender": "FEMALE", "age": "AGE_25_34"}, "stat_time_day": "2021-10-29 00:00:00", "adgroup_id": 1714125049901106, "gender": "FEMALE", "age": "AGE_25_34"}, "emitted_at": 1697639121757} +{"stream": "ad_group_audience_reports_daily", "data": {"metrics": {"result_rate": "1.63", "tt_app_name": "0", "mobile_app_id": "0", "impressions": "245", "campaign_name": "Website Traffic20211020010104", "conversion_rate": "0.00", "cpc": "0.48", "real_time_cost_per_conversion": "0.00", "spend": "1.92", "placement_type": "Automatic Placement", "cost_per_conversion": "0.00", "real_time_conversion": "0", "adgroup_name": "Ad Group20211020010107", "result": "4", "real_time_cost_per_result": "0.480", "promotion_type": "Website", "conversion": "0", "cost_per_result": "0.480", "dpa_target_audience_type": null, "cpm": "7.84", "real_time_result": "4", "tt_app_id": "0", "real_time_result_rate": "1.63", "campaign_id": 1714125042508817, "ctr": "1.63", "clicks": "4", "real_time_conversion_rate": "0.00"}, "dimensions": {"adgroup_id": 1714125049901106, "stat_time_day": "2021-10-22 00:00:00", "gender": "MALE", "age": "AGE_45_54"}, "stat_time_day": "2021-10-22 00:00:00", "adgroup_id": 1714125049901106, "gender": "MALE", "age": "AGE_45_54"}, "emitted_at": 1697639121765} +{"stream": "campaigns_audience_reports_by_country_daily", "data": {"dimensions": {"country_code": "US", "campaign_id": 1714073078669329, "stat_time_day": "2021-10-19 00:00:00"}, "metrics": {"spend": "20.00", "ctr": "1.33", "cpc": "0.31", "cpm": "4.10", "campaign_name": "Website Traffic20211019110444", "clicks": "65", "impressions": "4874"}, "stat_time_day": "2021-10-19 00:00:00", "campaign_id": 1714073078669329, "country_code": "US"}, "emitted_at": 1697639178590} +{"stream": "campaigns_audience_reports_by_country_daily", "data": {"dimensions": {"country_code": "US", "campaign_id": 1714125042508817, "stat_time_day": "2021-10-20 00:00:00"}, "metrics": {"spend": "20.00", "ctr": "1.41", "cpc": "0.38", "cpm": "5.31", "campaign_name": "Website Traffic20211020010104", "clicks": "53", "impressions": "3765"}, "stat_time_day": "2021-10-20 00:00:00", "campaign_id": 1714125042508817, "country_code": "US"}, "emitted_at": 1697639178601} +{"stream": "campaigns_audience_reports_by_country_daily", "data": {"dimensions": {"country_code": "US", "campaign_id": 1714073078669329, "stat_time_day": "2021-10-20 00:00:00"}, "metrics": {"spend": "0.00", "ctr": "0.00", "cpc": "0.00", "cpm": "0.00", "campaign_name": "Website Traffic20211019110444", "clicks": "0", "impressions": "12"}, "stat_time_day": "2021-10-20 00:00:00", "campaign_id": 1714073078669329, "country_code": "US"}, "emitted_at": 1697639178606} +{"stream": "advertisers_audience_reports_daily", "data": {"metrics": {"cpc": "0.38", "clicks": "6", "ctr": "1.79", "cpm": "6.75", "impressions": "335", "spend": "2.26"}, "dimensions": {"stat_time_day": "2021-10-19 00:00:00", "age": "AGE_18_24", "gender": "MALE", "advertiser_id": 7002238017842757633}, "stat_time_day": "2021-10-19 00:00:00", "advertiser_id": 7002238017842757633, "gender": "MALE", "age": "AGE_18_24"}, "emitted_at": 1697639245550} +{"stream": "advertisers_audience_reports_daily", "data": {"metrics": {"cpc": "0.00", "clicks": "1", "ctr": "2.86", "cpm": "0.00", "impressions": "35", "spend": "0.00"}, "dimensions": {"stat_time_day": "2021-10-19 00:00:00", "age": "AGE_35_44", "gender": "MALE", "advertiser_id": 7002238017842757633}, "stat_time_day": "2021-10-19 00:00:00", "advertiser_id": 7002238017842757633, "gender": "MALE", "age": "AGE_35_44"}, "emitted_at": 1697639245552} +{"stream": "advertisers_audience_reports_daily", "data": {"metrics": {"cpc": "0.29", "clicks": "29", "ctr": "1.35", "cpm": "3.88", "impressions": "2146", "spend": "8.32"}, "dimensions": {"stat_time_day": "2021-10-19 00:00:00", "age": "AGE_13_17", "gender": "FEMALE", "advertiser_id": 7002238017842757633}, "stat_time_day": "2021-10-19 00:00:00", "advertiser_id": 7002238017842757633, "gender": "FEMALE", "age": "AGE_13_17"}, "emitted_at": 1697639245553} +{"stream": "advertisers_audience_reports_lifetime", "data": {"dimensions": {"gender": "MALE", "age": "AGE_35_44", "advertiser_id": 7002238017842757633}, "metrics": {"ctr": "1.26", "cpc": "0.36", "spend": "31.56", "cpm": "4.58", "clicks": "87", "impressions": "6897"}, "advertiser_id": 7002238017842757633, "gender": "MALE", "age": "AGE_35_44"}, "emitted_at": 1697639275347} +{"stream": "advertisers_audience_reports_lifetime", "data": {"dimensions": {"gender": "FEMALE", "age": "AGE_55_100", "advertiser_id": 7002238017842757633}, "metrics": {"ctr": "0.00", "cpc": "0.00", "spend": "0.00", "cpm": "0.00", "clicks": "0", "impressions": "17"}, "advertiser_id": 7002238017842757633, "gender": "FEMALE", "age": "AGE_55_100"}, "emitted_at": 1697639275356} +{"stream": "advertisers_audience_reports_lifetime", "data": {"dimensions": {"gender": "MALE", "age": "AGE_13_17", "advertiser_id": 7002238017842757633}, "metrics": {"ctr": "1.21", "cpc": "0.32", "spend": "7.13", "cpm": "3.92", "clicks": "22", "impressions": "1818"}, "advertiser_id": 7002238017842757633, "gender": "MALE", "age": "AGE_13_17"}, "emitted_at": 1697639275364}