From a2ae40f8103feedbcd06e6f4a13472217f2824ca Mon Sep 17 00:00:00 2001 From: Denys Davydov Date: Mon, 16 Oct 2023 13:30:14 +0300 Subject: [PATCH 1/8] Source tiktok marketing: apply minimum datetime restrictions --- .../source-tiktok-marketing/Dockerfile | 2 +- .../source-tiktok-marketing/metadata.yaml | 2 +- .../source_tiktok_marketing/source.py | 11 ++- .../source_tiktok_marketing/streams.py | 1 + .../unit_tests/conftest.py | 6 ++ .../unit_tests/unit_test.py | 10 +++ docs/integrations/sources/tiktok-marketing.md | 75 ++++++++++--------- 7 files changed, 66 insertions(+), 41 deletions(-) create mode 100644 airbyte-integrations/connectors/source-tiktok-marketing/unit_tests/conftest.py diff --git a/airbyte-integrations/connectors/source-tiktok-marketing/Dockerfile b/airbyte-integrations/connectors/source-tiktok-marketing/Dockerfile index 4b62a8e5fe528..38490341f0970 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.4.1 +LABEL io.airbyte.version=3.4.2 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 3ab49d44427f6..ce5a5795c14a4 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.4.1 + dockerImageTag: 3.4.2 dockerRepository: airbyte/source-tiktok-marketing githubIssueLabel: source-tiktok-marketing icon: tiktok.svg diff --git a/airbyte-integrations/connectors/source-tiktok-marketing/source_tiktok_marketing/source.py b/airbyte-integrations/connectors/source-tiktok-marketing/source_tiktok_marketing/source.py index 61d8aff8c89cf..fa56f36cb6260 100644 --- a/airbyte-integrations/connectors/source-tiktok-marketing/source_tiktok_marketing/source.py +++ b/airbyte-integrations/connectors/source-tiktok-marketing/source_tiktok_marketing/source.py @@ -1,9 +1,10 @@ # # Copyright (c) 2023 Airbyte, Inc., all rights reserved. # - +import logging from typing import Any, List, Mapping, Tuple +import pendulum from airbyte_cdk.logger import AirbyteLogger from airbyte_cdk.models import SyncMode from airbyte_cdk.sources import AbstractSource @@ -13,6 +14,7 @@ from .streams import ( DEFAULT_END_DATE, DEFAULT_START_DATE, + MINIMUM_START_DATE, AdGroupAudienceReports, AdGroupAudienceReportsByCountry, AdGroupAudienceReportsByPlatform, @@ -41,6 +43,7 @@ ReportGranularity, ) +logger = logging.getLogger("airbyte") DOCUMENTATION_URL = "https://docs.airbyte.com/integrations/sources/tiktok-marketing" @@ -86,9 +89,13 @@ def _prepare_stream_args(config: Mapping[str, Any]) -> Mapping[str, Any]: app_id = int(config.get("environment", {}).get("app_id", 0)) advertiser_id = config.get("environment", {}).get("advertiser_id") + start_date = config.get("start_date") or DEFAULT_START_DATE + if pendulum.parse(start_date) < pendulum.parse(MINIMUM_START_DATE): + logger.warning(f"The start date is too far in the past. Setting it to {MINIMUM_START_DATE}.") + start_date = MINIMUM_START_DATE stream_args = { "authenticator": TiktokTokenAuthenticator(access_token), - "start_date": config.get("start_date") or DEFAULT_START_DATE, + "start_date": start_date, "end_date": config.get("end_date") or DEFAULT_END_DATE, "app_id": app_id, "secret": secret, 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 3e9724eee8531..671cf546b48b6 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 @@ -23,6 +23,7 @@ # TikTok Initial release date is September 2016 DEFAULT_START_DATE = "2016-09-01" +MINIMUM_START_DATE = "2012-01-01" DEFAULT_END_DATE = str(datetime.now().date()) NOT_AUDIENCE_METRICS = [ "reach", diff --git a/airbyte-integrations/connectors/source-tiktok-marketing/unit_tests/conftest.py b/airbyte-integrations/connectors/source-tiktok-marketing/unit_tests/conftest.py new file mode 100644 index 0000000000000..fb7fcc4295d14 --- /dev/null +++ b/airbyte-integrations/connectors/source-tiktok-marketing/unit_tests/conftest.py @@ -0,0 +1,6 @@ +import pytest + + +@pytest.fixture(autouse=True) +def patch_sleep(mocker): + mocker.patch("time.sleep") diff --git a/airbyte-integrations/connectors/source-tiktok-marketing/unit_tests/unit_test.py b/airbyte-integrations/connectors/source-tiktok-marketing/unit_tests/unit_test.py index 073b318e006f8..5b355896671f5 100644 --- a/airbyte-integrations/connectors/source-tiktok-marketing/unit_tests/unit_test.py +++ b/airbyte-integrations/connectors/source-tiktok-marketing/unit_tests/unit_test.py @@ -186,3 +186,13 @@ def test_source_prepare_stream_args(config_file): config = json.load(f) args = SourceTiktokMarketing._prepare_stream_args(config) assert "authenticator" in args + + +def test_minimum_start_date(config, caplog): + config["start_date"] = "2000-01-01" + source = SourceTiktokMarketing() + streams = source.streams(config) + + for stream in streams: + assert stream._start_time == "2012-01-01 00:00:00" + assert "The start date is to far in the past. Setting it to 2012-01-01" in caplog.text diff --git a/docs/integrations/sources/tiktok-marketing.md b/docs/integrations/sources/tiktok-marketing.md index f0c772467d169..a32d14ec86f86 100644 --- a/docs/integrations/sources/tiktok-marketing.md +++ b/docs/integrations/sources/tiktok-marketing.md @@ -579,41 +579,42 @@ The connector is restricted by [requests limitation](https://ads.tiktok.com/mark ## Changelog -| Version | Date | Pull Request | Subject | -|:--------|:-----------|:---------------------------------------------------------|:----------------------------------------------------------------------------------------------| -| 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 | +| Version | Date | Pull Request | Subject | +|:--------|:-----------|:---------------------------------------------------------|:-------------------------------------------------------------------------------------------------| +| 3.4.2 | 2023-10-16 | [00000](https://github.com/airbytehq/airbyte/pull/00000) | 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 | -| 3.3.1 | 2023-07-06 | [25423](https://github.com/airbytehq/airbyte/pull/25423) | add new fields to ad reports streams | -| 3.3.0 | 2023-07-05 | [27988](https://github.com/airbytehq/airbyte/pull/27988) | Add `category_exclusion_ids` field to `ad_groups` schema. | -| 3.2.1 | 2023-05-26 | [26569](https://github.com/airbytehq/airbyte/pull/26569) | Fixed syncs with `advertiser_id` provided in input configuration | -| 3.2.0 | 2023-05-25 | [26565](https://github.com/airbytehq/airbyte/pull/26565) | Change default value for `attribution window` to 3 days; add min/max validation | -| 3.1.0 | 2023-05-12 | [26024](https://github.com/airbytehq/airbyte/pull/26024) | Updated the `Ads` stream schema | -| 3.0.1 | 2023-04-07 | [24712](https://github.com/airbytehq/airbyte/pull/24712) | Added `attribution window` for \*-reports streams | -| 3.0.0 | 2023-03-29 | [24630](https://github.com/airbytehq/airbyte/pull/24630) | Migrate to v1.3 API | -| 2.0.6 | 2023-03-30 | [22134](https://github.com/airbytehq/airbyte/pull/22134) | Add `country_code` and `platform` audience reports. | -| 2.0.5 | 2023-03-29 | [22863](https://github.com/airbytehq/airbyte/pull/22863) | Specified date formatting in specification | -| 2.0.4 | 2023-02-23 | [22309](https://github.com/airbytehq/airbyte/pull/22309) | Add Advertiser ID to filter reports and streams | -| 2.0.3 | 2023-02-15 | [23091](https://github.com/airbytehq/airbyte/pull/23091) | Add more clear log message for 504 error | -| 2.0.2 | 2023-02-02 | [22309](https://github.com/airbytehq/airbyte/pull/22309) | Chunk Advertiser IDs | -| 2.0.1 | 2023-01-27 | [22044](https://github.com/airbytehq/airbyte/pull/22044) | Set `AvailabilityStrategy` for streams explicitly to `None` | -| 2.0.0 | 2022-12-20 | [20415](https://github.com/airbytehq/airbyte/pull/20415) | Update schema types for `AudienceReports` and `BasicReports` streams. | -| 1.0.1 | 2022-12-16 | [20598](https://github.com/airbytehq/airbyte/pull/20598) | Remove Audience Reports with Hourly granularity due to deprecated dimension. | -| 1.0.0 | 2022-12-05 | [19758](https://github.com/airbytehq/airbyte/pull/19758) | Convert `mobile_app_id` from integer to string in AudienceReport streams. | -| 0.1.17 | 2022-10-04 | [17557](https://github.com/airbytehq/airbyte/pull/17557) | Retry error 50002 | -| 0.1.16 | 2022-09-28 | [17326](https://github.com/airbytehq/airbyte/pull/17326) | Migrate to per-stream state | -| 0.1.15 | 2022-08-30 | [16137](https://github.com/airbytehq/airbyte/pull/16137) | Fixed bug with normalization caused by unsupported nested cursor field | -| 0.1.14 | 2022-06-29 | [13890](https://github.com/airbytehq/airbyte/pull/13890) | Removed granularity config option | -| 0.1.13 | 2022-06-28 | [13650](https://github.com/airbytehq/airbyte/pull/13650) | Added video metrics to report streams | -| 0.1.12 | 2022-05-24 | [13127](https://github.com/airbytehq/airbyte/pull/13127) | Fixed integration test | -| 0.1.11 | 2022-04-27 | [12838](https://github.com/airbytehq/airbyte/pull/12838) | Added end date configuration for tiktok | -| 0.1.10 | 2022-05-07 | [12545](https://github.com/airbytehq/airbyte/pull/12545) | Removed odd production authenication method | -| 0.1.9 | 2022-04-30 | [12500](https://github.com/airbytehq/airbyte/pull/12500) | Improve input configuration copy | -| 0.1.8 | 2022-04-28 | [12435](https://github.com/airbytehq/airbyte/pull/12435) | updated spec descriptions | -| 0.1.7 | 2022-04-27 | [12380](https://github.com/airbytehq/airbyte/pull/12380) | fixed spec descriptions and documentation | -| 0.1.6 | 2022-04-19 | [11378](https://github.com/airbytehq/airbyte/pull/11378) | updated logic for stream initializations, fixed errors in schemas, updated SAT and unit tests | -| 0.1.5 | 2022-02-17 | [10398](https://github.com/airbytehq/airbyte/pull/10398) | Add Audience reports | -| 0.1.4 | 2021-12-30 | [7636](https://github.com/airbytehq/airbyte/pull/7636) | Add OAuth support | -| 0.1.3 | 2021-12-10 | [8425](https://github.com/airbytehq/airbyte/pull/8425) | Update title, description fields in spec | -| 0.1.2 | 2021-12-02 | [8292](https://github.com/airbytehq/airbyte/pull/8292) | Support reports | -| 0.1.1 | 2021-11-08 | [7499](https://github.com/airbytehq/airbyte/pull/7499) | Remove base-python dependencies | -| 0.1.0 | 2021-09-18 | [5887](https://github.com/airbytehq/airbyte/pull/5887) | Release TikTok Marketing CDK Connector | +| 3.3.1 | 2023-07-06 | [25423](https://github.com/airbytehq/airbyte/pull/25423) | add new fields to ad reports streams | +| 3.3.0 | 2023-07-05 | [27988](https://github.com/airbytehq/airbyte/pull/27988) | Add `category_exclusion_ids` field to `ad_groups` schema. | +| 3.2.1 | 2023-05-26 | [26569](https://github.com/airbytehq/airbyte/pull/26569) | Fixed syncs with `advertiser_id` provided in input configuration | +| 3.2.0 | 2023-05-25 | [26565](https://github.com/airbytehq/airbyte/pull/26565) | Change default value for `attribution window` to 3 days; add min/max validation | +| 3.1.0 | 2023-05-12 | [26024](https://github.com/airbytehq/airbyte/pull/26024) | Updated the `Ads` stream schema | +| 3.0.1 | 2023-04-07 | [24712](https://github.com/airbytehq/airbyte/pull/24712) | Added `attribution window` for \*-reports streams | +| 3.0.0 | 2023-03-29 | [24630](https://github.com/airbytehq/airbyte/pull/24630) | Migrate to v1.3 API | +| 2.0.6 | 2023-03-30 | [22134](https://github.com/airbytehq/airbyte/pull/22134) | Add `country_code` and `platform` audience reports. | +| 2.0.5 | 2023-03-29 | [22863](https://github.com/airbytehq/airbyte/pull/22863) | Specified date formatting in specification | +| 2.0.4 | 2023-02-23 | [22309](https://github.com/airbytehq/airbyte/pull/22309) | Add Advertiser ID to filter reports and streams | +| 2.0.3 | 2023-02-15 | [23091](https://github.com/airbytehq/airbyte/pull/23091) | Add more clear log message for 504 error | +| 2.0.2 | 2023-02-02 | [22309](https://github.com/airbytehq/airbyte/pull/22309) | Chunk Advertiser IDs | +| 2.0.1 | 2023-01-27 | [22044](https://github.com/airbytehq/airbyte/pull/22044) | Set `AvailabilityStrategy` for streams explicitly to `None` | +| 2.0.0 | 2022-12-20 | [20415](https://github.com/airbytehq/airbyte/pull/20415) | Update schema types for `AudienceReports` and `BasicReports` streams. | +| 1.0.1 | 2022-12-16 | [20598](https://github.com/airbytehq/airbyte/pull/20598) | Remove Audience Reports with Hourly granularity due to deprecated dimension. | +| 1.0.0 | 2022-12-05 | [19758](https://github.com/airbytehq/airbyte/pull/19758) | Convert `mobile_app_id` from integer to string in AudienceReport streams. | +| 0.1.17 | 2022-10-04 | [17557](https://github.com/airbytehq/airbyte/pull/17557) | Retry error 50002 | +| 0.1.16 | 2022-09-28 | [17326](https://github.com/airbytehq/airbyte/pull/17326) | Migrate to per-stream state | +| 0.1.15 | 2022-08-30 | [16137](https://github.com/airbytehq/airbyte/pull/16137) | Fixed bug with normalization caused by unsupported nested cursor field | +| 0.1.14 | 2022-06-29 | [13890](https://github.com/airbytehq/airbyte/pull/13890) | Removed granularity config option | +| 0.1.13 | 2022-06-28 | [13650](https://github.com/airbytehq/airbyte/pull/13650) | Added video metrics to report streams | +| 0.1.12 | 2022-05-24 | [13127](https://github.com/airbytehq/airbyte/pull/13127) | Fixed integration test | +| 0.1.11 | 2022-04-27 | [12838](https://github.com/airbytehq/airbyte/pull/12838) | Added end date configuration for tiktok | +| 0.1.10 | 2022-05-07 | [12545](https://github.com/airbytehq/airbyte/pull/12545) | Removed odd production authenication method | +| 0.1.9 | 2022-04-30 | [12500](https://github.com/airbytehq/airbyte/pull/12500) | Improve input configuration copy | +| 0.1.8 | 2022-04-28 | [12435](https://github.com/airbytehq/airbyte/pull/12435) | updated spec descriptions | +| 0.1.7 | 2022-04-27 | [12380](https://github.com/airbytehq/airbyte/pull/12380) | fixed spec descriptions and documentation | +| 0.1.6 | 2022-04-19 | [11378](https://github.com/airbytehq/airbyte/pull/11378) | updated logic for stream initializations, fixed errors in schemas, updated SAT and unit tests | +| 0.1.5 | 2022-02-17 | [10398](https://github.com/airbytehq/airbyte/pull/10398) | Add Audience reports | +| 0.1.4 | 2021-12-30 | [7636](https://github.com/airbytehq/airbyte/pull/7636) | Add OAuth support | +| 0.1.3 | 2021-12-10 | [8425](https://github.com/airbytehq/airbyte/pull/8425) | Update title, description fields in spec | +| 0.1.2 | 2021-12-02 | [8292](https://github.com/airbytehq/airbyte/pull/8292) | Support reports | +| 0.1.1 | 2021-11-08 | [7499](https://github.com/airbytehq/airbyte/pull/7499) | Remove base-python dependencies | +| 0.1.0 | 2021-09-18 | [5887](https://github.com/airbytehq/airbyte/pull/5887) | Release TikTok Marketing CDK Connector | From 9b7cade992796e99efabdc1b948af35e4fd174ea Mon Sep 17 00:00:00 2001 From: Denys Davydov Date: Mon, 16 Oct 2023 13:37:34 +0300 Subject: [PATCH 2/8] 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 a32d14ec86f86..83bb972b56800 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.4.2 | 2023-10-16 | [00000](https://github.com/airbytehq/airbyte/pull/00000) | Apply minimum date restrictions | +| 3.4.2 | 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 | | 3.3.1 | 2023-07-06 | [25423](https://github.com/airbytehq/airbyte/pull/25423) | add new fields to ad reports streams | From 4c13610fe7c3f0e25060a4b62325bab39a1b6dc1 Mon Sep 17 00:00:00 2001 From: Denys Davydov Date: Mon, 16 Oct 2023 14:18:50 +0300 Subject: [PATCH 3/8] fix typo --- .../connectors/source-tiktok-marketing/unit_tests/unit_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airbyte-integrations/connectors/source-tiktok-marketing/unit_tests/unit_test.py b/airbyte-integrations/connectors/source-tiktok-marketing/unit_tests/unit_test.py index 5b355896671f5..1ace5637eb963 100644 --- a/airbyte-integrations/connectors/source-tiktok-marketing/unit_tests/unit_test.py +++ b/airbyte-integrations/connectors/source-tiktok-marketing/unit_tests/unit_test.py @@ -195,4 +195,4 @@ def test_minimum_start_date(config, caplog): for stream in streams: assert stream._start_time == "2012-01-01 00:00:00" - assert "The start date is to far in the past. Setting it to 2012-01-01" in caplog.text + assert "The start date is too far in the past. Setting it to 2012-01-01" in caplog.text From 528d2c9cd028d0cb877149d8c49aa24b677347d0 Mon Sep 17 00:00:00 2001 From: Denys Davydov Date: Mon, 16 Oct 2023 14:29:49 +0300 Subject: [PATCH 4/8] fix env path --- .../source-tiktok-marketing/unit_tests/conftest.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/airbyte-integrations/connectors/source-tiktok-marketing/unit_tests/conftest.py b/airbyte-integrations/connectors/source-tiktok-marketing/unit_tests/conftest.py index fb7fcc4295d14..d4ba815b782dc 100644 --- a/airbyte-integrations/connectors/source-tiktok-marketing/unit_tests/conftest.py +++ b/airbyte-integrations/connectors/source-tiktok-marketing/unit_tests/conftest.py @@ -1,4 +1,9 @@ +import os + import pytest +from airbyte_cdk.utils.constants import ENV_REQUEST_CACHE_PATH + +os.environ[ENV_REQUEST_CACHE_PATH] = ENV_REQUEST_CACHE_PATH @pytest.fixture(autouse=True) From 7fca0453e55219a561757e5ea0ff23b63c6f6d2f Mon Sep 17 00:00:00 2001 From: Denys Davydov Date: Mon, 16 Oct 2023 16:41:50 +0300 Subject: [PATCH 5/8] update schema and expected records --- .../connectors/source-tiktok-marketing/Dockerfile | 2 +- .../integration_tests/expected_records.jsonl | 6 +++--- .../integration_tests/expected_records2.jsonl | 10 +++++----- .../connectors/source-tiktok-marketing/metadata.yaml | 2 +- .../source_tiktok_marketing/schemas/campaigns.json | 3 +++ docs/integrations/sources/tiktok-marketing.md | 2 +- 6 files changed, 14 insertions(+), 11 deletions(-) diff --git a/airbyte-integrations/connectors/source-tiktok-marketing/Dockerfile b/airbyte-integrations/connectors/source-tiktok-marketing/Dockerfile index 38490341f0970..37a7559eab622 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.4.2 +LABEL io.airbyte.version=3.5.0 LABEL io.airbyte.name=airbyte/source-tiktok-marketing 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 dc6fbcbf35a02..f8b7e9c4f2e23 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 @@ -5,9 +5,9 @@ {"stream": "ad_groups", "data": {"secondary_optimization_event": null, "operating_systems": [], "interest_keyword_ids": [], "campaign_name": "CampaignVadimTraffic", "pixel_id": null, "device_price_ranges": [], "excluded_custom_actions": [], "skip_learning_phase": 0, "delivery_mode": null, "pacing": "PACING_MODE_SMOOTH", "languages": [], "age_groups": ["AGE_25_34", "AGE_35_44"], "adgroup_app_profile_page_state": null, "search_result_enabled": false, "placement_type": "PLACEMENT_TYPE_AUTOMATIC", "video_download_disabled": false, "billing_event": "CPC", "app_download_url": null, "conversion_window": null, "optimization_goal": "CLICK", "adgroup_id": 1728545385226289, "excluded_audience_ids": [], "auto_targeting_enabled": false, "gender": "GENDER_UNLIMITED", "is_new_structure": true, "brand_safety_type": "NO_BRAND_SAFETY", "adgroup_name": "AdGroupVadim", "budget": 20, "schedule_end_time": "2032-03-25 13:02:23", "statistic_type": null, "schedule_start_time": "2022-03-28 13:02:23", "schedule_type": "SCHEDULE_FROM_NOW", "category_exclusion_ids": [], "operation_status": "ENABLE", "rf_estimated_cpr": null, "network_types": [], "deep_cpa_bid": 0, "frequency_schedule": null, "bid_display_mode": "CPMV", "inventory_filter_enabled": false, "next_day_retention": null, "rf_estimated_frequency": null, "share_disabled": false, "bid_price": 0, "keywords": null, "promotion_type": "WEBSITE", "comment_disabled": false, "budget_mode": "BUDGET_MODE_DAY", "creative_material_mode": "CUSTOM", "category_id": 0, "deep_bid_type": null, "dayparting": "111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111", "secondary_status": "ADGROUP_STATUS_CAMPAIGN_DISABLE", "optimization_event": null, "location_ids": [6252001], "actions": [], "app_type": null, "brand_safety_partner": null, "bid_type": "BID_TYPE_NO_BID", "placements": ["PLACEMENT_TIKTOK", "PLACEMENT_TOPBUZZ", "PLACEMENT_PANGLE"], "campaign_id": 1728545382536225, "modify_time": "2022-03-31 08:13:30", "rf_purchased_type": null, "audience_ids": [], "advertiser_id": 7002238017842757633, "conversion_bid_price": 0, "app_id": null, "is_hfss": false, "feed_type": null, "device_model_ids": [], "schedule_infos": null, "included_custom_actions": [], "ios14_quota_type": "UNOCCUPIED", "scheduled_budget": 0, "frequency": null, "is_smart_performance_campaign": false, "create_time": "2022-03-28 12:09:07", "interest_category_ids": [15], "purchased_impression": null, "purchased_reach": null}, "emitted_at": 1691143344341} {"stream": "ad_groups", "data": {"secondary_optimization_event": null, "operating_systems": [], "interest_keyword_ids": [], "campaign_name": "Website Traffic20211020010104", "pixel_id": null, "device_price_ranges": [], "excluded_custom_actions": [], "skip_learning_phase": 0, "delivery_mode": null, "pacing": "PACING_MODE_SMOOTH", "languages": ["en"], "age_groups": ["AGE_25_34", "AGE_35_44", "AGE_45_54"], "adgroup_app_profile_page_state": null, "search_result_enabled": false, "placement_type": "PLACEMENT_TYPE_AUTOMATIC", "video_download_disabled": false, "billing_event": "CPC", "app_download_url": null, "conversion_window": null, "optimization_goal": "CLICK", "adgroup_id": 1714125049901106, "excluded_audience_ids": [], "auto_targeting_enabled": false, "gender": "GENDER_UNLIMITED", "is_new_structure": true, "brand_safety_type": "NO_BRAND_SAFETY", "adgroup_name": "Ad Group20211020010107", "budget": 20, "schedule_end_time": "2021-10-31 09:01:07", "statistic_type": null, "schedule_start_time": "2021-10-20 09:01:07", "schedule_type": "SCHEDULE_START_END", "category_exclusion_ids": [], "operation_status": "ENABLE", "rf_estimated_cpr": null, "network_types": [], "deep_cpa_bid": 0, "frequency_schedule": null, "bid_display_mode": "CPMV", "inventory_filter_enabled": false, "next_day_retention": null, "rf_estimated_frequency": null, "share_disabled": false, "bid_price": 0, "keywords": null, "promotion_type": "WEBSITE", "comment_disabled": false, "budget_mode": "BUDGET_MODE_DAY", "creative_material_mode": "CUSTOM", "category_id": 0, "deep_bid_type": null, "dayparting": "111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111", "secondary_status": "ADGROUP_STATUS_CAMPAIGN_DISABLE", "optimization_event": null, "location_ids": [6252001], "actions": [], "app_type": null, "brand_safety_partner": null, "bid_type": "BID_TYPE_NO_BID", "placements": ["PLACEMENT_TIKTOK", "PLACEMENT_TOPBUZZ", "PLACEMENT_PANGLE"], "campaign_id": 1714125042508817, "modify_time": "2022-03-24 12:06:54", "rf_purchased_type": null, "audience_ids": [], "advertiser_id": 7002238017842757633, "conversion_bid_price": 0, "app_id": null, "is_hfss": false, "feed_type": null, "device_model_ids": [], "schedule_infos": null, "included_custom_actions": [], "ios14_quota_type": "UNOCCUPIED", "scheduled_budget": 0, "frequency": null, "is_smart_performance_campaign": false, "create_time": "2021-10-20 08:04:05", "interest_category_ids": [], "purchased_impression": null, "purchased_reach": null}, "emitted_at": 1691143344343} {"stream": "ad_groups", "data": {"secondary_optimization_event": null, "operating_systems": [], "interest_keyword_ids": [], "campaign_name": "Website Traffic20211020005342", "pixel_id": null, "device_price_ranges": [], "excluded_custom_actions": [], "skip_learning_phase": 0, "delivery_mode": null, "pacing": "PACING_MODE_SMOOTH", "languages": [], "age_groups": null, "adgroup_app_profile_page_state": null, "search_result_enabled": false, "placement_type": "PLACEMENT_TYPE_AUTOMATIC", "video_download_disabled": false, "billing_event": "CPC", "app_download_url": null, "conversion_window": null, "optimization_goal": "CLICK", "adgroup_id": 1714124588896305, "excluded_audience_ids": [], "auto_targeting_enabled": false, "gender": "GENDER_UNLIMITED", "is_new_structure": true, "brand_safety_type": "NO_BRAND_SAFETY", "adgroup_name": "Ad Group20211020005346", "budget": 20, "schedule_end_time": "2021-10-31 08:53:46", "statistic_type": null, "schedule_start_time": "2021-10-20 08:53:46", "schedule_type": "SCHEDULE_START_END", "category_exclusion_ids": [], "operation_status": "DISABLE", "rf_estimated_cpr": null, "network_types": [], "deep_cpa_bid": 0, "frequency_schedule": null, "bid_display_mode": "CPMV", "inventory_filter_enabled": false, "next_day_retention": null, "rf_estimated_frequency": null, "share_disabled": false, "bid_price": 0, "keywords": null, "promotion_type": "WEBSITE", "comment_disabled": false, "budget_mode": "BUDGET_MODE_DAY", "creative_material_mode": "CUSTOM", "category_id": 0, "deep_bid_type": null, "dayparting": "111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111", "secondary_status": "ADGROUP_STATUS_CAMPAIGN_DISABLE", "optimization_event": null, "location_ids": [6252001], "actions": [], "app_type": null, "brand_safety_partner": null, "bid_type": "BID_TYPE_NO_BID", "placements": ["PLACEMENT_TIKTOK", "PLACEMENT_TOPBUZZ", "PLACEMENT_HELO", "PLACEMENT_PANGLE"], "campaign_id": 1714124576938033, "modify_time": "2021-10-20 08:08:14", "rf_purchased_type": null, "audience_ids": [], "advertiser_id": 7002238017842757633, "conversion_bid_price": 0, "app_id": null, "is_hfss": false, "feed_type": null, "device_model_ids": [], "schedule_infos": null, "included_custom_actions": [], "ios14_quota_type": "UNOCCUPIED", "scheduled_budget": 0, "frequency": null, "is_smart_performance_campaign": false, "create_time": "2021-10-20 07:56:39", "interest_category_ids": [], "purchased_impression": null, "purchased_reach": null}, "emitted_at": 1691143344345} -{"stream": "campaigns", "data": {"budget": 0, "campaign_type": "REGULAR_CAMPAIGN", "is_smart_performance_campaign": false, "budget_mode": "BUDGET_MODE_INFINITE", "campaign_name": "CampaignVadimTraffic", "deep_bid_type": null, "objective": "LANDING_PAGE", "operation_status": "DISABLE", "objective_type": "TRAFFIC", "modify_time": "2022-03-30 21:23:52", "create_time": "2022-03-28 12:09:05", "roas_bid": 0, "advertiser_id": 7002238017842757633, "secondary_status": "CAMPAIGN_STATUS_DISABLE", "campaign_id": 1728545382536225, "is_new_structure": true}, "emitted_at": 1691143345193} -{"stream": "campaigns", "data": {"budget": 0, "campaign_type": "REGULAR_CAMPAIGN", "is_smart_performance_campaign": false, "budget_mode": "BUDGET_MODE_INFINITE", "campaign_name": "Website Traffic20211020010104", "deep_bid_type": null, "objective": "LANDING_PAGE", "operation_status": "DISABLE", "objective_type": "TRAFFIC", "modify_time": "2022-03-24 12:08:29", "create_time": "2021-10-20 08:04:04", "roas_bid": 0, "advertiser_id": 7002238017842757633, "secondary_status": "CAMPAIGN_STATUS_DISABLE", "campaign_id": 1714125042508817, "is_new_structure": true}, "emitted_at": 1691143345193} -{"stream": "campaigns", "data": {"budget": 0, "campaign_type": "REGULAR_CAMPAIGN", "is_smart_performance_campaign": false, "budget_mode": "BUDGET_MODE_INFINITE", "campaign_name": "Website Traffic20211020005342", "deep_bid_type": null, "objective": "LANDING_PAGE", "operation_status": "DISABLE", "objective_type": "TRAFFIC", "modify_time": "2021-10-20 08:01:18", "create_time": "2021-10-20 07:56:38", "roas_bid": 0, "advertiser_id": 7002238017842757633, "secondary_status": "CAMPAIGN_STATUS_DISABLE", "campaign_id": 1714124576938033, "is_new_structure": true}, "emitted_at": 1691143345194} +{"stream": "campaigns", "data": {"budget_mode": "BUDGET_MODE_INFINITE", "campaign_type": "REGULAR_CAMPAIGN", "campaign_id": 1728545382536225, "roas_bid": 0, "budget": 0, "operation_status": "DISABLE", "objective_type": "TRAFFIC", "is_smart_performance_campaign": false, "deep_bid_type": null, "campaign_name": "CampaignVadimTraffic", "create_time": "2022-03-28 12:09:05", "objective": "LANDING_PAGE", "advertiser_id": 7002238017842757633, "secondary_status": "CAMPAIGN_STATUS_DISABLE", "is_new_structure": true, "is_search_campaign": false, "modify_time": "2022-03-30 21:23:52"}, "emitted_at": 1697462159049} +{"stream": "campaigns", "data": {"budget_mode": "BUDGET_MODE_INFINITE", "campaign_type": "REGULAR_CAMPAIGN", "campaign_id": 1714125042508817, "roas_bid": 0, "budget": 0, "operation_status": "DISABLE", "objective_type": "TRAFFIC", "is_smart_performance_campaign": false, "deep_bid_type": null, "campaign_name": "Website Traffic20211020010104", "create_time": "2021-10-20 08:04:04", "objective": "LANDING_PAGE", "advertiser_id": 7002238017842757633, "secondary_status": "CAMPAIGN_STATUS_DISABLE", "is_new_structure": true, "is_search_campaign": false, "modify_time": "2022-03-24 12:08:29"}, "emitted_at": 1697462159052} +{"stream": "campaigns", "data": {"budget_mode": "BUDGET_MODE_INFINITE", "campaign_type": "REGULAR_CAMPAIGN", "campaign_id": 1714124576938033, "roas_bid": 0, "budget": 0, "operation_status": "DISABLE", "objective_type": "TRAFFIC", "is_smart_performance_campaign": false, "deep_bid_type": null, "campaign_name": "Website Traffic20211020005342", "create_time": "2021-10-20 07:56:38", "objective": "LANDING_PAGE", "advertiser_id": 7002238017842757633, "secondary_status": "CAMPAIGN_STATUS_DISABLE", "is_new_structure": true, "is_search_campaign": false, "modify_time": "2021-10-20 08:01:18"}, "emitted_at": 1697462159054} {"stream": "advertiser_ids", "data": {"advertiser_id": 7001035076276387841, "advertiser_name": "Airbyte0827"}, "emitted_at": 1691143345771} {"stream": "advertiser_ids", "data": {"advertiser_id": 7001040009704833026, "advertiser_name": "Airbyte08270"}, "emitted_at": 1691143345772} {"stream": "advertiser_ids", "data": {"advertiser_id": 7002238017842757633, "advertiser_name": "Airbyte0830"}, "emitted_at": 1691143345772} diff --git a/airbyte-integrations/connectors/source-tiktok-marketing/integration_tests/expected_records2.jsonl b/airbyte-integrations/connectors/source-tiktok-marketing/integration_tests/expected_records2.jsonl index 1e6c7a91d9694..2de7eab3ba57d 100644 --- a/airbyte-integrations/connectors/source-tiktok-marketing/integration_tests/expected_records2.jsonl +++ b/airbyte-integrations/connectors/source-tiktok-marketing/integration_tests/expected_records2.jsonl @@ -1,8 +1,8 @@ -{"stream": "ads_reports", "data": {"metrics": {"cpm": "3.430", "real_time_result": "69", "vta_conversion": "0", "real_time_conversion": "0", "comments": "0", "impressions": "5830", "campaign_id": 1714125042508817, "real_time_result_rate": "1.18", "campaign_name": "Website Traffic20211020010104", "cpc": "0.290", "app_install": "0", "placement_type": "Automatic Placement", "tt_app_name": "0", "dpa_target_audience_type": null, "real_time_conversion_rate": "0.00", "video_views_p75": "140", "video_views_p100": "92", "clicks": "69", "cost_per_result": "0.2899", "real_time_cost_per_result": "0.2899", "reach": "4806", "secondary_goal_result_rate": null, "total_onsite_shopping_value": "0.000", "frequency": "1.21", "shares": "0", "vta_purchase": "0", "real_time_cost_per_conversion": "0.000", "tt_app_id": 0, "result_rate": "1.18", "value_per_complete_payment": "0.000", "ad_name": "Optimized Version 4_202110201102_2021-10-20 11:02:00", "average_video_play_per_user": "1.64", "adgroup_name": "Ad Group20211020010107", "total_pageview": "0", "total_complete_payment_rate": "0.000", "real_time_app_install_cost": "0.000", "cta_conversion": "0", "clicks_on_music_disc": "0", "likes": "36", "secondary_goal_result": null, "ctr": "1.18", "video_watched_2s": "686", "video_views_p50": "214", "video_watched_6s": "180", "ad_text": "Airbyte - data portabioolity platform - from anywhere to anywhere!", "follows": "0", "onsite_shopping": "0", "complete_payment": "0", "cost_per_secondary_goal_result": null, "conversion_rate": "0.00", "mobile_app_id": "0", "profile_visits": "0", "conversion": "0", "promotion_type": "Website", "average_video_play": "1.52", "adgroup_id": 1714125049901106, "total_purchase_value": "0.000", "cost_per_conversion": "0.000", "cta_purchase": "0", "video_views_p25": "513", "result": "69", "real_time_app_install": "0", "spend": "20.000", "cost_per_1000_reached": "4.161", "video_play_actions": "5173"}, "dimensions": {"ad_id": 1714125051115569, "stat_time_day": "2021-10-25 00:00:00"}, "stat_time_day": "2021-10-25 00:00:00", "ad_id": 1714125051115569}, "emitted_at": 1690215563238} -{"stream": "ads_reports", "data": {"metrics": {"cpm": "5.310", "real_time_result": "53", "vta_conversion": "0", "real_time_conversion": "0", "comments": "1", "impressions": "3765", "campaign_id": 1714125042508817, "real_time_result_rate": "1.41", "campaign_name": "Website Traffic20211020010104", "cpc": "0.380", "app_install": "0", "placement_type": "Automatic Placement", "tt_app_name": "0", "dpa_target_audience_type": null, "real_time_conversion_rate": "0.00", "video_views_p75": "74", "video_views_p100": "52", "clicks": "53", "cost_per_result": "0.3774", "real_time_cost_per_result": "0.3774", "reach": "3134", "secondary_goal_result_rate": null, "total_onsite_shopping_value": "0.000", "frequency": "1.20", "shares": "0", "vta_purchase": "0", "real_time_cost_per_conversion": "0.000", "tt_app_id": 0, "result_rate": "1.41", "value_per_complete_payment": "0.000", "ad_name": "Optimized Version 4_202110201102_2021-10-20 11:02:00", "average_video_play_per_user": "1.55", "adgroup_name": "Ad Group20211020010107", "total_pageview": "0", "total_complete_payment_rate": "0.000", "real_time_app_install_cost": "0.000", "cta_conversion": "0", "clicks_on_music_disc": "0", "likes": "36", "secondary_goal_result": null, "ctr": "1.41", "video_watched_2s": "408", "video_views_p50": "130", "video_watched_6s": "106", "ad_text": "Airbyte - data portabioolity platform - from anywhere to anywhere!", "follows": "0", "onsite_shopping": "0", "complete_payment": "0", "cost_per_secondary_goal_result": null, "conversion_rate": "0.00", "mobile_app_id": "0", "profile_visits": "0", "conversion": "0", "promotion_type": "Website", "average_video_play": "1.45", "adgroup_id": 1714125049901106, "total_purchase_value": "0.000", "cost_per_conversion": "0.000", "cta_purchase": "0", "video_views_p25": "295", "result": "53", "real_time_app_install": "0", "spend": "20.000", "cost_per_1000_reached": "6.382", "video_play_actions": "3344"}, "dimensions": {"ad_id": 1714125051115569, "stat_time_day": "2021-10-20 00:00:00"}, "stat_time_day": "2021-10-20 00:00:00", "ad_id": 1714125051115569}, "emitted_at": 1690215563242} -{"stream": "ads_reports", "data": {"metrics": {"cpm": "4.910", "real_time_result": "67", "vta_conversion": "0", "real_time_conversion": "0", "comments": "0", "impressions": "4077", "campaign_id": 1714125042508817, "real_time_result_rate": "1.64", "campaign_name": "Website Traffic20211020010104", "cpc": "0.300", "app_install": "0", "placement_type": "Automatic Placement", "tt_app_name": "0", "dpa_target_audience_type": null, "real_time_conversion_rate": "0.00", "video_views_p75": "95", "video_views_p100": "65", "clicks": "67", "cost_per_result": "0.2985", "real_time_cost_per_result": "0.2985", "reach": "3322", "secondary_goal_result_rate": null, "total_onsite_shopping_value": "0.000", "frequency": "1.23", "shares": "0", "vta_purchase": "0", "real_time_cost_per_conversion": "0.000", "tt_app_id": 0, "result_rate": "1.64", "value_per_complete_payment": "0.000", "ad_name": "Optimized Version 4_202110201102_2021-10-20 11:02:00", "average_video_play_per_user": "1.65", "adgroup_name": "Ad Group20211020010107", "total_pageview": "0", "total_complete_payment_rate": "0.000", "real_time_app_install_cost": "0.000", "cta_conversion": "0", "clicks_on_music_disc": "0", "likes": "19", "secondary_goal_result": null, "ctr": "1.64", "video_watched_2s": "463", "video_views_p50": "146", "video_watched_6s": "124", "ad_text": "Airbyte - data portabioolity platform - from anywhere to anywhere!", "follows": "0", "onsite_shopping": "0", "complete_payment": "0", "cost_per_secondary_goal_result": null, "conversion_rate": "0.00", "mobile_app_id": "0", "profile_visits": "0", "conversion": "0", "promotion_type": "Website", "average_video_play": "1.53", "adgroup_id": 1714125049901106, "total_purchase_value": "0.000", "cost_per_conversion": "0.000", "cta_purchase": "0", "video_views_p25": "338", "result": "67", "real_time_app_install": "0", "spend": "20.000", "cost_per_1000_reached": "6.020", "video_play_actions": "3590"}, "dimensions": {"ad_id": 1714125051115569, "stat_time_day": "2021-10-23 00:00:00"}, "stat_time_day": "2021-10-23 00:00:00", "ad_id": 1714125051115569}, "emitted_at": 1690215563247} -{"stream": "ads_reports", "data": {"metrics": {"cpm": "5.330", "real_time_result": "46", "vta_conversion": "0", "real_time_conversion": "0", "comments": "1", "impressions": "3750", "campaign_id": 1714125042508817, "real_time_result_rate": "1.23", "campaign_name": "Website Traffic20211020010104", "cpc": "0.430", "app_install": "0", "placement_type": "Automatic Placement", "tt_app_name": "0", "dpa_target_audience_type": null, "real_time_conversion_rate": "0.00", "video_views_p75": "90", "video_views_p100": "71", "clicks": "46", "cost_per_result": "0.4348", "real_time_cost_per_result": "0.4348", "reach": "3119", "secondary_goal_result_rate": null, "total_onsite_shopping_value": "0.000", "frequency": "1.20", "shares": "0", "vta_purchase": "0", "real_time_cost_per_conversion": "0.000", "tt_app_id": 0, "result_rate": "1.23", "value_per_complete_payment": "0.000", "ad_name": "Optimized Version 4_202110201102_2021-10-20 11:02:00", "average_video_play_per_user": "1.61", "adgroup_name": "Ad Group20211020010107", "total_pageview": "0", "total_complete_payment_rate": "0.000", "real_time_app_install_cost": "0.000", "cta_conversion": "0", "clicks_on_music_disc": "0", "likes": "25", "secondary_goal_result": null, "ctr": "1.23", "video_watched_2s": "413", "video_views_p50": "142", "video_watched_6s": "112", "ad_text": "Airbyte - data portabioolity platform - from anywhere to anywhere!", "follows": "0", "onsite_shopping": "0", "complete_payment": "0", "cost_per_secondary_goal_result": null, "conversion_rate": "0.00", "mobile_app_id": "0", "profile_visits": "0", "conversion": "0", "promotion_type": "Website", "average_video_play": "1.50", "adgroup_id": 1714125049901106, "total_purchase_value": "0.000", "cost_per_conversion": "0.000", "cta_purchase": "0", "video_views_p25": "297", "result": "46", "real_time_app_install": "0", "spend": "20.000", "cost_per_1000_reached": "6.412", "video_play_actions": "3344"}, "dimensions": {"ad_id": 1714125051115569, "stat_time_day": "2021-10-26 00:00:00"}, "stat_time_day": "2021-10-26 00:00:00", "ad_id": 1714125051115569}, "emitted_at": 1690215563249} -{"stream": "ads_reports", "data": {"metrics": {"cpm": "5.030", "real_time_result": "45", "vta_conversion": "0", "real_time_conversion": "0", "comments": "0", "impressions": "3977", "campaign_id": 1714125042508817, "real_time_result_rate": "1.13", "campaign_name": "Website Traffic20211020010104", "cpc": "0.440", "app_install": "0", "placement_type": "Automatic Placement", "tt_app_name": "0", "dpa_target_audience_type": null, "real_time_conversion_rate": "0.00", "video_views_p75": "77", "video_views_p100": "54", "clicks": "45", "cost_per_result": "0.4444", "real_time_cost_per_result": "0.4444", "reach": "3227", "secondary_goal_result_rate": null, "total_onsite_shopping_value": "0.000", "frequency": "1.23", "shares": "0", "vta_purchase": "0", "real_time_cost_per_conversion": "0.000", "tt_app_id": 0, "result_rate": "1.13", "value_per_complete_payment": "0.000", "ad_name": "Optimized Version 4_202110201102_2021-10-20 11:02:00", "average_video_play_per_user": "1.57", "adgroup_name": "Ad Group20211020010107", "total_pageview": "0", "total_complete_payment_rate": "0.000", "real_time_app_install_cost": "0.000", "cta_conversion": "0", "clicks_on_music_disc": "0", "likes": "25", "secondary_goal_result": null, "ctr": "1.13", "video_watched_2s": "422", "video_views_p50": "128", "video_watched_6s": "107", "ad_text": "Airbyte - data portabioolity platform - from anywhere to anywhere!", "follows": "0", "onsite_shopping": "0", "complete_payment": "0", "cost_per_secondary_goal_result": null, "conversion_rate": "0.00", "mobile_app_id": "0", "profile_visits": "0", "conversion": "0", "promotion_type": "Website", "average_video_play": "1.46", "adgroup_id": 1714125049901106, "total_purchase_value": "0.000", "cost_per_conversion": "0.000", "cta_purchase": "0", "video_views_p25": "301", "result": "45", "real_time_app_install": "0", "spend": "20.000", "cost_per_1000_reached": "6.198", "video_play_actions": "3460"}, "dimensions": {"ad_id": 1714125051115569, "stat_time_day": "2021-10-21 00:00:00"}, "stat_time_day": "2021-10-21 00:00:00", "ad_id": 1714125051115569}, "emitted_at": 1690215563252} +{"stream": "ads_reports", "data": {"metrics": {"video_views_p25": "513", "app_install": "0", "vta_purchase": "0", "value_per_complete_payment": "0.00", "real_time_result": "69", "tt_app_id": 0, "real_time_cost_per_result": "0.290", "result_rate": "1.18", "result": "69", "adgroup_name": "Ad Group20211020010107", "real_time_cost_per_conversion": "0.00", "real_time_result_rate": "1.18", "promotion_type": "Website", "campaign_name": "Website Traffic20211020010104", "ad_text": "Airbyte - data portabioolity platform - from anywhere to anywhere!", "follows": "0", "total_complete_payment_rate": "0.00", "spend": "20.00", "real_time_app_install_cost": "0.00", "video_play_actions": "5173", "cost_per_1000_reached": "4.16", "average_video_play_per_user": "1.64", "video_views_p100": "92", "cost_per_secondary_goal_result": null, "real_time_app_install": "0", "cost_per_result": "0.290", "cpc": "0.29", "tt_app_name": "0", "video_watched_2s": "686", "likes": "36", "placement_type": "Automatic Placement", "shares": "0", "mobile_app_id": "0", "conversion_rate": "0.00", "cta_conversion": "0", "complete_payment": "0", "cta_purchase": "0", "cost_per_conversion": "0.00", "secondary_goal_result_rate": null, "video_views_p50": "214", "clicks": "69", "ctr": "1.18", "impressions": "5830", "secondary_goal_result": null, "dpa_target_audience_type": null, "video_watched_6s": "180", "vta_conversion": "0", "onsite_shopping": "0", "ad_name": "Optimized Version 4_202110201102_2021-10-20 11:02:00", "reach": "4806", "real_time_conversion": "0", "clicks_on_music_disc": "0", "profile_visits": "0", "total_pageview": "0", "real_time_conversion_rate": "0.00", "conversion": "0", "adgroup_id": 1714125049901106, "total_purchase_value": "0.00", "average_video_play": "1.52", "video_views_p75": "140", "cpm": "3.43", "total_onsite_shopping_value": "0.00", "frequency": "1.21", "comments": "0", "campaign_id": 1714125042508817}, "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": 1697462825735} +{"stream": "ads_reports", "data": {"metrics": {"video_views_p25": "295", "app_install": "0", "vta_purchase": "0", "value_per_complete_payment": "0.00", "real_time_result": "53", "tt_app_id": 0, "real_time_cost_per_result": "0.377", "result_rate": "1.41", "result": "53", "adgroup_name": "Ad Group20211020010107", "real_time_cost_per_conversion": "0.00", "real_time_result_rate": "1.41", "promotion_type": "Website", "campaign_name": "Website Traffic20211020010104", "ad_text": "Airbyte - data portabioolity platform - from anywhere to anywhere!", "follows": "0", "total_complete_payment_rate": "0.00", "spend": "20.00", "real_time_app_install_cost": "0.00", "video_play_actions": "3344", "cost_per_1000_reached": "6.38", "average_video_play_per_user": "1.55", "video_views_p100": "52", "cost_per_secondary_goal_result": null, "real_time_app_install": "0", "cost_per_result": "0.377", "cpc": "0.38", "tt_app_name": "0", "video_watched_2s": "408", "likes": "36", "placement_type": "Automatic Placement", "shares": "0", "mobile_app_id": "0", "conversion_rate": "0.00", "cta_conversion": "0", "complete_payment": "0", "cta_purchase": "0", "cost_per_conversion": "0.00", "secondary_goal_result_rate": null, "video_views_p50": "130", "clicks": "53", "ctr": "1.41", "impressions": "3765", "secondary_goal_result": null, "dpa_target_audience_type": null, "video_watched_6s": "106", "vta_conversion": "0", "onsite_shopping": "0", "ad_name": "Optimized Version 4_202110201102_2021-10-20 11:02:00", "reach": "3134", "real_time_conversion": "0", "clicks_on_music_disc": "0", "profile_visits": "0", "total_pageview": "0", "real_time_conversion_rate": "0.00", "conversion": "0", "adgroup_id": 1714125049901106, "total_purchase_value": "0.00", "average_video_play": "1.45", "video_views_p75": "74", "cpm": "5.31", "total_onsite_shopping_value": "0.00", "frequency": "1.20", "comments": "1", "campaign_id": 1714125042508817}, "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": 1697462825748} +{"stream": "ads_reports", "data": {"metrics": {"video_views_p25": "338", "app_install": "0", "vta_purchase": "0", "value_per_complete_payment": "0.00", "real_time_result": "67", "tt_app_id": 0, "real_time_cost_per_result": "0.299", "result_rate": "1.64", "result": "67", "adgroup_name": "Ad Group20211020010107", "real_time_cost_per_conversion": "0.00", "real_time_result_rate": "1.64", "promotion_type": "Website", "campaign_name": "Website Traffic20211020010104", "ad_text": "Airbyte - data portabioolity platform - from anywhere to anywhere!", "follows": "0", "total_complete_payment_rate": "0.00", "spend": "20.00", "real_time_app_install_cost": "0.00", "video_play_actions": "3590", "cost_per_1000_reached": "6.02", "average_video_play_per_user": "1.65", "video_views_p100": "65", "cost_per_secondary_goal_result": null, "real_time_app_install": "0", "cost_per_result": "0.299", "cpc": "0.30", "tt_app_name": "0", "video_watched_2s": "463", "likes": "19", "placement_type": "Automatic Placement", "shares": "0", "mobile_app_id": "0", "conversion_rate": "0.00", "cta_conversion": "0", "complete_payment": "0", "cta_purchase": "0", "cost_per_conversion": "0.00", "secondary_goal_result_rate": null, "video_views_p50": "146", "clicks": "67", "ctr": "1.64", "impressions": "4077", "secondary_goal_result": null, "dpa_target_audience_type": null, "video_watched_6s": "124", "vta_conversion": "0", "onsite_shopping": "0", "ad_name": "Optimized Version 4_202110201102_2021-10-20 11:02:00", "reach": "3322", "real_time_conversion": "0", "clicks_on_music_disc": "0", "profile_visits": "0", "total_pageview": "0", "real_time_conversion_rate": "0.00", "conversion": "0", "adgroup_id": 1714125049901106, "total_purchase_value": "0.00", "average_video_play": "1.53", "video_views_p75": "95", "cpm": "4.91", "total_onsite_shopping_value": "0.00", "frequency": "1.23", "comments": "0", "campaign_id": 1714125042508817}, "dimensions": {"stat_time_day": "2021-10-23 00:00:00", "ad_id": 1714125051115569}, "stat_time_day": "2021-10-23 00:00:00", "ad_id": 1714125051115569}, "emitted_at": 1697462825760} +{"stream": "ads_reports", "data": {"metrics": {"video_views_p25": "297", "app_install": "0", "vta_purchase": "0", "value_per_complete_payment": "0.00", "real_time_result": "46", "tt_app_id": 0, "real_time_cost_per_result": "0.435", "result_rate": "1.23", "result": "46", "adgroup_name": "Ad Group20211020010107", "real_time_cost_per_conversion": "0.00", "real_time_result_rate": "1.23", "promotion_type": "Website", "campaign_name": "Website Traffic20211020010104", "ad_text": "Airbyte - data portabioolity platform - from anywhere to anywhere!", "follows": "0", "total_complete_payment_rate": "0.00", "spend": "20.00", "real_time_app_install_cost": "0.00", "video_play_actions": "3344", "cost_per_1000_reached": "6.41", "average_video_play_per_user": "1.61", "video_views_p100": "71", "cost_per_secondary_goal_result": null, "real_time_app_install": "0", "cost_per_result": "0.435", "cpc": "0.43", "tt_app_name": "0", "video_watched_2s": "413", "likes": "25", "placement_type": "Automatic Placement", "shares": "0", "mobile_app_id": "0", "conversion_rate": "0.00", "cta_conversion": "0", "complete_payment": "0", "cta_purchase": "0", "cost_per_conversion": "0.00", "secondary_goal_result_rate": null, "video_views_p50": "142", "clicks": "46", "ctr": "1.23", "impressions": "3750", "secondary_goal_result": null, "dpa_target_audience_type": null, "video_watched_6s": "112", "vta_conversion": "0", "onsite_shopping": "0", "ad_name": "Optimized Version 4_202110201102_2021-10-20 11:02:00", "reach": "3119", "real_time_conversion": "0", "clicks_on_music_disc": "0", "profile_visits": "0", "total_pageview": "0", "real_time_conversion_rate": "0.00", "conversion": "0", "adgroup_id": 1714125049901106, "total_purchase_value": "0.00", "average_video_play": "1.50", "video_views_p75": "90", "cpm": "5.33", "total_onsite_shopping_value": "0.00", "frequency": "1.20", "comments": "1", "campaign_id": 1714125042508817}, "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": 1697462825763} +{"stream": "ads_reports", "data": {"metrics": {"video_views_p25": "301", "app_install": "0", "vta_purchase": "0", "value_per_complete_payment": "0.00", "real_time_result": "45", "tt_app_id": 0, "real_time_cost_per_result": "0.444", "result_rate": "1.13", "result": "45", "adgroup_name": "Ad Group20211020010107", "real_time_cost_per_conversion": "0.00", "real_time_result_rate": "1.13", "promotion_type": "Website", "campaign_name": "Website Traffic20211020010104", "ad_text": "Airbyte - data portabioolity platform - from anywhere to anywhere!", "follows": "0", "total_complete_payment_rate": "0.00", "spend": "20.00", "real_time_app_install_cost": "0.00", "video_play_actions": "3460", "cost_per_1000_reached": "6.20", "average_video_play_per_user": "1.57", "video_views_p100": "54", "cost_per_secondary_goal_result": null, "real_time_app_install": "0", "cost_per_result": "0.444", "cpc": "0.44", "tt_app_name": "0", "video_watched_2s": "422", "likes": "25", "placement_type": "Automatic Placement", "shares": "0", "mobile_app_id": "0", "conversion_rate": "0.00", "cta_conversion": "0", "complete_payment": "0", "cta_purchase": "0", "cost_per_conversion": "0.00", "secondary_goal_result_rate": null, "video_views_p50": "128", "clicks": "45", "ctr": "1.13", "impressions": "3977", "secondary_goal_result": null, "dpa_target_audience_type": null, "video_watched_6s": "107", "vta_conversion": "0", "onsite_shopping": "0", "ad_name": "Optimized Version 4_202110201102_2021-10-20 11:02:00", "reach": "3227", "real_time_conversion": "0", "clicks_on_music_disc": "0", "profile_visits": "0", "total_pageview": "0", "real_time_conversion_rate": "0.00", "conversion": "0", "adgroup_id": 1714125049901106, "total_purchase_value": "0.00", "average_video_play": "1.46", "video_views_p75": "77", "cpm": "5.03", "total_onsite_shopping_value": "0.00", "frequency": "1.23", "comments": "0", "campaign_id": 1714125042508817}, "dimensions": {"stat_time_day": "2021-10-21 00:00:00", "ad_id": 1714125051115569}, "stat_time_day": "2021-10-21 00:00:00", "ad_id": 1714125051115569}, "emitted_at": 1697462825766} {"stream":"ad_groups_reports","data":{"metrics":{"dpa_target_audience_type":null,"average_video_play":"1.45","conversion_rate":"0.00","mobile_app_id":"0","cost_per_result":"0.3774","video_views_p50":"130","comments":"1","video_watched_6s":"106","placement_type":"Automatic Placement","secondary_goal_result":null,"shares":"0","app_install":"0","result_rate":"1.41","result":"53","real_time_app_install":"0","likes":"36","video_views_p100":"52","impressions":"3765","profile_visits":"0","adgroup_name":"Ad Group20211020010107","clicks_on_music_disc":"0","cost_per_conversion":"0.000","video_views_p75":"74","cpc":"0.380","average_video_play_per_user":"1.55","cost_per_1000_reached":"6.382","promotion_type":"Website","video_views_p25":"295","real_time_cost_per_conversion":"0.000","cost_per_secondary_goal_result":null,"frequency":"1.20","follows":"0","clicks":"53","ctr":"1.41","conversion":"0","video_play_actions":"3344","cpm":"5.310","reach":"3134","video_watched_2s":"408","campaign_name":"Website Traffic20211020010104","spend":"20.000","tt_app_id":0,"real_time_conversion_rate":"0.00","real_time_cost_per_result":"0.3774","secondary_goal_result_rate":null,"real_time_app_install_cost":"0.000","real_time_conversion":"0","real_time_result":"53","real_time_result_rate":"1.41","campaign_id":1714125042508817,"tt_app_name":"0"},"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":1680792355223} {"stream":"ad_groups_reports","data":{"metrics":{"dpa_target_audience_type":null,"average_video_play":"1.52","conversion_rate":"0.00","mobile_app_id":"0","cost_per_result":"0.2899","video_views_p50":"214","comments":"0","video_watched_6s":"180","placement_type":"Automatic Placement","secondary_goal_result":null,"shares":"0","app_install":"0","result_rate":"1.18","result":"69","real_time_app_install":"0","likes":"36","video_views_p100":"92","impressions":"5830","profile_visits":"0","adgroup_name":"Ad Group20211020010107","clicks_on_music_disc":"0","cost_per_conversion":"0.000","video_views_p75":"140","cpc":"0.290","average_video_play_per_user":"1.64","cost_per_1000_reached":"4.161","promotion_type":"Website","video_views_p25":"513","real_time_cost_per_conversion":"0.000","cost_per_secondary_goal_result":null,"frequency":"1.21","follows":"0","clicks":"69","ctr":"1.18","conversion":"0","video_play_actions":"5173","cpm":"3.430","reach":"4806","video_watched_2s":"686","campaign_name":"Website Traffic20211020010104","spend":"20.000","tt_app_id":0,"real_time_conversion_rate":"0.00","real_time_cost_per_result":"0.2899","secondary_goal_result_rate":null,"real_time_app_install_cost":"0.000","real_time_conversion":"0","real_time_result":"69","real_time_result_rate":"1.18","campaign_id":1714125042508817,"tt_app_name":"0"},"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":1680792355227} {"stream":"ad_groups_reports","data":{"metrics":{"dpa_target_audience_type":null,"average_video_play":"1.48","conversion_rate":"0.00","mobile_app_id":"0","cost_per_result":"0.3922","video_views_p50":"164","comments":"0","video_watched_6s":"132","placement_type":"Automatic Placement","secondary_goal_result":null,"shares":"0","app_install":"0","result_rate":"1.09","result":"51","real_time_app_install":"0","likes":"18","video_views_p100":"76","impressions":"4696","profile_visits":"0","adgroup_name":"Ad Group20211020010107","clicks_on_music_disc":"0","cost_per_conversion":"0.000","video_views_p75":"108","cpc":"0.390","average_video_play_per_user":"1.61","cost_per_1000_reached":"5.233","promotion_type":"Website","video_views_p25":"355","real_time_cost_per_conversion":"0.000","cost_per_secondary_goal_result":null,"frequency":"1.23","follows":"0","clicks":"51","ctr":"1.09","conversion":"0","video_play_actions":"4179","cpm":"4.260","reach":"3822","video_watched_2s":"493","campaign_name":"Website Traffic20211020010104","spend":"20.000","tt_app_id":0,"real_time_conversion_rate":"0.00","real_time_cost_per_result":"0.3922","secondary_goal_result_rate":null,"real_time_app_install_cost":"0.000","real_time_conversion":"0","real_time_result":"51","real_time_result_rate":"1.09","campaign_id":1714125042508817,"tt_app_name":"0"},"dimensions":{"adgroup_id":1714125049901106,"stat_time_day":"2021-10-27 00:00:00"},"stat_time_day":"2021-10-27 00:00:00","adgroup_id":1714125049901106},"emitted_at":1680792355230} diff --git a/airbyte-integrations/connectors/source-tiktok-marketing/metadata.yaml b/airbyte-integrations/connectors/source-tiktok-marketing/metadata.yaml index ce5a5795c14a4..59e3beae39528 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.4.2 + dockerImageTag: 3.5.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/schemas/campaigns.json b/airbyte-integrations/connectors/source-tiktok-marketing/source_tiktok_marketing/schemas/campaigns.json index c6644b1baadf2..a2671c009fe17 100644 --- a/airbyte-integrations/connectors/source-tiktok-marketing/source_tiktok_marketing/schemas/campaigns.json +++ b/airbyte-integrations/connectors/source-tiktok-marketing/source_tiktok_marketing/schemas/campaigns.json @@ -64,6 +64,9 @@ }, "is_smart_performance_campaign": { "type": ["null", "boolean"] + }, + "is_search_campaign": { + "type": ["null", "boolean"] } } } diff --git a/docs/integrations/sources/tiktok-marketing.md b/docs/integrations/sources/tiktok-marketing.md index 83bb972b56800..f514c0d943ab2 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.4.2 | 2023-10-16 | [31445](https://github.com/airbytehq/airbyte/pull/31445) | Apply minimum date restrictions | +| 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 | | 3.3.1 | 2023-07-06 | [25423](https://github.com/airbytehq/airbyte/pull/25423) | add new fields to ad reports streams | From f62dbff07967bcb2e94fc00fcd0cba65fa19d846 Mon Sep 17 00:00:00 2001 From: Denys Davydov Date: Mon, 16 Oct 2023 18:24:47 +0300 Subject: [PATCH 6/8] update CAT --- .../source-tiktok-marketing/acceptance-test-config.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/airbyte-integrations/connectors/source-tiktok-marketing/acceptance-test-config.yml b/airbyte-integrations/connectors/source-tiktok-marketing/acceptance-test-config.yml index 40d96d88ac2c5..484fd19e64686 100644 --- a/airbyte-integrations/connectors/source-tiktok-marketing/acceptance-test-config.yml +++ b/airbyte-integrations/connectors/source-tiktok-marketing/acceptance-test-config.yml @@ -46,6 +46,10 @@ acceptance_tests: exact_order: no extra_records: yes timeout_seconds: 1200 + ignored_fields: + ads: + - name: "profile_image_url" + bypass_reason: "Volatile URLs" empty_streams: - name: ads_reports_hourly bypass_reason: "Tested with daily granularity." @@ -97,6 +101,10 @@ acceptance_tests: - config_path: "secrets/config.json" configured_catalog_path: "integration_tests/configured_catalog.json" timeout_seconds: 7200 + ignored_fields: + ads: + - name: "profile_image_url" + bypass_reason: "Volatile URLs" incremental: tests: - config_path: "secrets/config.json" From a822ffd3a642ae7cbd4f7c60b02d78d728da95c7 Mon Sep 17 00:00:00 2001 From: Denys Davydov Date: Mon, 16 Oct 2023 19:53:45 +0300 Subject: [PATCH 7/8] upd schemas and expected records --- .../integration_tests/expected_records2.jsonl | 10 +++---- .../schemas/ad_groups.json | 27 +++++++++++++++++++ .../source_tiktok_marketing/schemas/ads.json | 3 +++ .../schemas/campaigns.json | 6 +++++ 4 files changed, 41 insertions(+), 5 deletions(-) diff --git a/airbyte-integrations/connectors/source-tiktok-marketing/integration_tests/expected_records2.jsonl b/airbyte-integrations/connectors/source-tiktok-marketing/integration_tests/expected_records2.jsonl index 2de7eab3ba57d..78b5b542b7416 100644 --- a/airbyte-integrations/connectors/source-tiktok-marketing/integration_tests/expected_records2.jsonl +++ b/airbyte-integrations/connectors/source-tiktok-marketing/integration_tests/expected_records2.jsonl @@ -3,11 +3,11 @@ {"stream": "ads_reports", "data": {"metrics": {"video_views_p25": "338", "app_install": "0", "vta_purchase": "0", "value_per_complete_payment": "0.00", "real_time_result": "67", "tt_app_id": 0, "real_time_cost_per_result": "0.299", "result_rate": "1.64", "result": "67", "adgroup_name": "Ad Group20211020010107", "real_time_cost_per_conversion": "0.00", "real_time_result_rate": "1.64", "promotion_type": "Website", "campaign_name": "Website Traffic20211020010104", "ad_text": "Airbyte - data portabioolity platform - from anywhere to anywhere!", "follows": "0", "total_complete_payment_rate": "0.00", "spend": "20.00", "real_time_app_install_cost": "0.00", "video_play_actions": "3590", "cost_per_1000_reached": "6.02", "average_video_play_per_user": "1.65", "video_views_p100": "65", "cost_per_secondary_goal_result": null, "real_time_app_install": "0", "cost_per_result": "0.299", "cpc": "0.30", "tt_app_name": "0", "video_watched_2s": "463", "likes": "19", "placement_type": "Automatic Placement", "shares": "0", "mobile_app_id": "0", "conversion_rate": "0.00", "cta_conversion": "0", "complete_payment": "0", "cta_purchase": "0", "cost_per_conversion": "0.00", "secondary_goal_result_rate": null, "video_views_p50": "146", "clicks": "67", "ctr": "1.64", "impressions": "4077", "secondary_goal_result": null, "dpa_target_audience_type": null, "video_watched_6s": "124", "vta_conversion": "0", "onsite_shopping": "0", "ad_name": "Optimized Version 4_202110201102_2021-10-20 11:02:00", "reach": "3322", "real_time_conversion": "0", "clicks_on_music_disc": "0", "profile_visits": "0", "total_pageview": "0", "real_time_conversion_rate": "0.00", "conversion": "0", "adgroup_id": 1714125049901106, "total_purchase_value": "0.00", "average_video_play": "1.53", "video_views_p75": "95", "cpm": "4.91", "total_onsite_shopping_value": "0.00", "frequency": "1.23", "comments": "0", "campaign_id": 1714125042508817}, "dimensions": {"stat_time_day": "2021-10-23 00:00:00", "ad_id": 1714125051115569}, "stat_time_day": "2021-10-23 00:00:00", "ad_id": 1714125051115569}, "emitted_at": 1697462825760} {"stream": "ads_reports", "data": {"metrics": {"video_views_p25": "297", "app_install": "0", "vta_purchase": "0", "value_per_complete_payment": "0.00", "real_time_result": "46", "tt_app_id": 0, "real_time_cost_per_result": "0.435", "result_rate": "1.23", "result": "46", "adgroup_name": "Ad Group20211020010107", "real_time_cost_per_conversion": "0.00", "real_time_result_rate": "1.23", "promotion_type": "Website", "campaign_name": "Website Traffic20211020010104", "ad_text": "Airbyte - data portabioolity platform - from anywhere to anywhere!", "follows": "0", "total_complete_payment_rate": "0.00", "spend": "20.00", "real_time_app_install_cost": "0.00", "video_play_actions": "3344", "cost_per_1000_reached": "6.41", "average_video_play_per_user": "1.61", "video_views_p100": "71", "cost_per_secondary_goal_result": null, "real_time_app_install": "0", "cost_per_result": "0.435", "cpc": "0.43", "tt_app_name": "0", "video_watched_2s": "413", "likes": "25", "placement_type": "Automatic Placement", "shares": "0", "mobile_app_id": "0", "conversion_rate": "0.00", "cta_conversion": "0", "complete_payment": "0", "cta_purchase": "0", "cost_per_conversion": "0.00", "secondary_goal_result_rate": null, "video_views_p50": "142", "clicks": "46", "ctr": "1.23", "impressions": "3750", "secondary_goal_result": null, "dpa_target_audience_type": null, "video_watched_6s": "112", "vta_conversion": "0", "onsite_shopping": "0", "ad_name": "Optimized Version 4_202110201102_2021-10-20 11:02:00", "reach": "3119", "real_time_conversion": "0", "clicks_on_music_disc": "0", "profile_visits": "0", "total_pageview": "0", "real_time_conversion_rate": "0.00", "conversion": "0", "adgroup_id": 1714125049901106, "total_purchase_value": "0.00", "average_video_play": "1.50", "video_views_p75": "90", "cpm": "5.33", "total_onsite_shopping_value": "0.00", "frequency": "1.20", "comments": "1", "campaign_id": 1714125042508817}, "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": 1697462825763} {"stream": "ads_reports", "data": {"metrics": {"video_views_p25": "301", "app_install": "0", "vta_purchase": "0", "value_per_complete_payment": "0.00", "real_time_result": "45", "tt_app_id": 0, "real_time_cost_per_result": "0.444", "result_rate": "1.13", "result": "45", "adgroup_name": "Ad Group20211020010107", "real_time_cost_per_conversion": "0.00", "real_time_result_rate": "1.13", "promotion_type": "Website", "campaign_name": "Website Traffic20211020010104", "ad_text": "Airbyte - data portabioolity platform - from anywhere to anywhere!", "follows": "0", "total_complete_payment_rate": "0.00", "spend": "20.00", "real_time_app_install_cost": "0.00", "video_play_actions": "3460", "cost_per_1000_reached": "6.20", "average_video_play_per_user": "1.57", "video_views_p100": "54", "cost_per_secondary_goal_result": null, "real_time_app_install": "0", "cost_per_result": "0.444", "cpc": "0.44", "tt_app_name": "0", "video_watched_2s": "422", "likes": "25", "placement_type": "Automatic Placement", "shares": "0", "mobile_app_id": "0", "conversion_rate": "0.00", "cta_conversion": "0", "complete_payment": "0", "cta_purchase": "0", "cost_per_conversion": "0.00", "secondary_goal_result_rate": null, "video_views_p50": "128", "clicks": "45", "ctr": "1.13", "impressions": "3977", "secondary_goal_result": null, "dpa_target_audience_type": null, "video_watched_6s": "107", "vta_conversion": "0", "onsite_shopping": "0", "ad_name": "Optimized Version 4_202110201102_2021-10-20 11:02:00", "reach": "3227", "real_time_conversion": "0", "clicks_on_music_disc": "0", "profile_visits": "0", "total_pageview": "0", "real_time_conversion_rate": "0.00", "conversion": "0", "adgroup_id": 1714125049901106, "total_purchase_value": "0.00", "average_video_play": "1.46", "video_views_p75": "77", "cpm": "5.03", "total_onsite_shopping_value": "0.00", "frequency": "1.23", "comments": "0", "campaign_id": 1714125042508817}, "dimensions": {"stat_time_day": "2021-10-21 00:00:00", "ad_id": 1714125051115569}, "stat_time_day": "2021-10-21 00:00:00", "ad_id": 1714125051115569}, "emitted_at": 1697462825766} -{"stream":"ad_groups_reports","data":{"metrics":{"dpa_target_audience_type":null,"average_video_play":"1.45","conversion_rate":"0.00","mobile_app_id":"0","cost_per_result":"0.3774","video_views_p50":"130","comments":"1","video_watched_6s":"106","placement_type":"Automatic Placement","secondary_goal_result":null,"shares":"0","app_install":"0","result_rate":"1.41","result":"53","real_time_app_install":"0","likes":"36","video_views_p100":"52","impressions":"3765","profile_visits":"0","adgroup_name":"Ad Group20211020010107","clicks_on_music_disc":"0","cost_per_conversion":"0.000","video_views_p75":"74","cpc":"0.380","average_video_play_per_user":"1.55","cost_per_1000_reached":"6.382","promotion_type":"Website","video_views_p25":"295","real_time_cost_per_conversion":"0.000","cost_per_secondary_goal_result":null,"frequency":"1.20","follows":"0","clicks":"53","ctr":"1.41","conversion":"0","video_play_actions":"3344","cpm":"5.310","reach":"3134","video_watched_2s":"408","campaign_name":"Website Traffic20211020010104","spend":"20.000","tt_app_id":0,"real_time_conversion_rate":"0.00","real_time_cost_per_result":"0.3774","secondary_goal_result_rate":null,"real_time_app_install_cost":"0.000","real_time_conversion":"0","real_time_result":"53","real_time_result_rate":"1.41","campaign_id":1714125042508817,"tt_app_name":"0"},"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":1680792355223} -{"stream":"ad_groups_reports","data":{"metrics":{"dpa_target_audience_type":null,"average_video_play":"1.52","conversion_rate":"0.00","mobile_app_id":"0","cost_per_result":"0.2899","video_views_p50":"214","comments":"0","video_watched_6s":"180","placement_type":"Automatic Placement","secondary_goal_result":null,"shares":"0","app_install":"0","result_rate":"1.18","result":"69","real_time_app_install":"0","likes":"36","video_views_p100":"92","impressions":"5830","profile_visits":"0","adgroup_name":"Ad Group20211020010107","clicks_on_music_disc":"0","cost_per_conversion":"0.000","video_views_p75":"140","cpc":"0.290","average_video_play_per_user":"1.64","cost_per_1000_reached":"4.161","promotion_type":"Website","video_views_p25":"513","real_time_cost_per_conversion":"0.000","cost_per_secondary_goal_result":null,"frequency":"1.21","follows":"0","clicks":"69","ctr":"1.18","conversion":"0","video_play_actions":"5173","cpm":"3.430","reach":"4806","video_watched_2s":"686","campaign_name":"Website Traffic20211020010104","spend":"20.000","tt_app_id":0,"real_time_conversion_rate":"0.00","real_time_cost_per_result":"0.2899","secondary_goal_result_rate":null,"real_time_app_install_cost":"0.000","real_time_conversion":"0","real_time_result":"69","real_time_result_rate":"1.18","campaign_id":1714125042508817,"tt_app_name":"0"},"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":1680792355227} -{"stream":"ad_groups_reports","data":{"metrics":{"dpa_target_audience_type":null,"average_video_play":"1.48","conversion_rate":"0.00","mobile_app_id":"0","cost_per_result":"0.3922","video_views_p50":"164","comments":"0","video_watched_6s":"132","placement_type":"Automatic Placement","secondary_goal_result":null,"shares":"0","app_install":"0","result_rate":"1.09","result":"51","real_time_app_install":"0","likes":"18","video_views_p100":"76","impressions":"4696","profile_visits":"0","adgroup_name":"Ad Group20211020010107","clicks_on_music_disc":"0","cost_per_conversion":"0.000","video_views_p75":"108","cpc":"0.390","average_video_play_per_user":"1.61","cost_per_1000_reached":"5.233","promotion_type":"Website","video_views_p25":"355","real_time_cost_per_conversion":"0.000","cost_per_secondary_goal_result":null,"frequency":"1.23","follows":"0","clicks":"51","ctr":"1.09","conversion":"0","video_play_actions":"4179","cpm":"4.260","reach":"3822","video_watched_2s":"493","campaign_name":"Website Traffic20211020010104","spend":"20.000","tt_app_id":0,"real_time_conversion_rate":"0.00","real_time_cost_per_result":"0.3922","secondary_goal_result_rate":null,"real_time_app_install_cost":"0.000","real_time_conversion":"0","real_time_result":"51","real_time_result_rate":"1.09","campaign_id":1714125042508817,"tt_app_name":"0"},"dimensions":{"adgroup_id":1714125049901106,"stat_time_day":"2021-10-27 00:00:00"},"stat_time_day":"2021-10-27 00:00:00","adgroup_id":1714125049901106},"emitted_at":1680792355230} -{"stream":"ad_groups_reports","data":{"metrics":{"dpa_target_audience_type":null,"average_video_play":"1.46","conversion_rate":"0.00","mobile_app_id":"0","cost_per_result":"0.4762","video_views_p50":"112","comments":"0","video_watched_6s":"92","placement_type":"Automatic Placement","secondary_goal_result":null,"shares":"0","app_install":"0","result_rate":"1.19","result":"42","real_time_app_install":"0","likes":"17","video_views_p100":"59","impressions":"3520","profile_visits":"0","adgroup_name":"Ad Group20211020010107","clicks_on_music_disc":"0","cost_per_conversion":"0.000","video_views_p75":"74","cpc":"0.480","average_video_play_per_user":"1.57","cost_per_1000_reached":"6.878","promotion_type":"Website","video_views_p25":"277","real_time_cost_per_conversion":"0.000","cost_per_secondary_goal_result":null,"frequency":"1.21","follows":"0","clicks":"42","ctr":"1.19","conversion":"0","video_play_actions":"3118","cpm":"5.680","reach":"2908","video_watched_2s":"390","campaign_name":"Website Traffic20211020010104","spend":"20.000","tt_app_id":0,"real_time_conversion_rate":"0.00","real_time_cost_per_result":"0.4762","secondary_goal_result_rate":null,"real_time_app_install_cost":"0.000","real_time_conversion":"0","real_time_result":"42","real_time_result_rate":"1.19","campaign_id":1714125042508817,"tt_app_name":"0"},"dimensions":{"adgroup_id":1714125049901106,"stat_time_day":"2021-10-22 00:00:00"},"stat_time_day":"2021-10-22 00:00:00","adgroup_id":1714125049901106},"emitted_at":1680792355232} -{"stream":"ad_groups_reports","data":{"metrics":{"dpa_target_audience_type":null,"average_video_play":"1.55","conversion_rate":"0.00","mobile_app_id":"0","cost_per_result":"0.2532","video_views_p50":"278","comments":"0","video_watched_6s":"218","placement_type":"Automatic Placement","secondary_goal_result":null,"shares":"0","app_install":"0","result_rate":"1.08","result":"79","real_time_app_install":"0","likes":"56","video_views_p100":"118","impressions":"7310","profile_visits":"0","adgroup_name":"Ad Group20211020010107","clicks_on_music_disc":"0","cost_per_conversion":"0.000","video_views_p75":"155","cpc":"0.250","average_video_play_per_user":"1.66","cost_per_1000_reached":"3.318","promotion_type":"Website","video_views_p25":"663","real_time_cost_per_conversion":"0.000","cost_per_secondary_goal_result":null,"frequency":"1.21","follows":"0","clicks":"79","ctr":"1.08","conversion":"0","video_play_actions":"6433","cpm":"2.740","reach":"6028","video_watched_2s":"917","campaign_name":"Website Traffic20211020010104","spend":"20.000","tt_app_id":0,"real_time_conversion_rate":"0.00","real_time_cost_per_result":"0.2532","secondary_goal_result_rate":null,"real_time_app_install_cost":"0.000","real_time_conversion":"0","real_time_result":"79","real_time_result_rate":"1.08","campaign_id":1714125042508817,"tt_app_name":"0"},"dimensions":{"adgroup_id":1714125049901106,"stat_time_day":"2021-10-24 00:00:00"},"stat_time_day":"2021-10-24 00:00:00","adgroup_id":1714125049901106},"emitted_at":1680792355235} +{"stream":"ad_groups_reports","data":{"dimensions": {"stat_time_day": "2021-10-20 00:00:00", "adgroup_id": 1714125049901106}, "metrics": {"conversion": "0", "real_time_conversion_rate": "0.00", "secondary_goal_result_rate": null, "real_time_cost_per_conversion": "0.00", "placement_type": "Automatic Placement", "real_time_app_install": "0", "video_views_p100": "52", "spend": "20.00", "campaign_id": 1714125042508817, "video_views_p75": "74", "clicks_on_music_disc": "0", "video_play_actions": "3344", "follows": "0", "result_rate": "1.41", "secondary_goal_result": null, "app_install": "0", "cost_per_result": "0.377", "comments": "1", "dpa_target_audience_type": null, "profile_visits": "0", "promotion_type": "Website", "ctr": "1.41", "video_views_p25": "295", "real_time_cost_per_result": "0.377", "tt_app_name": "0", "video_watched_6s": "106", "cpm": "5.31", "video_watched_2s": "408", "result": "53", "real_time_app_install_cost": "0.00", "cost_per_conversion": "0.00", "frequency": "1.20", "real_time_result": "53", "campaign_name": "Website Traffic20211020010104", "conversion_rate": "0.00", "impressions": "3765", "average_video_play": "1.45", "video_views_p50": "130", "adgroup_name": "Ad Group20211020010107", "real_time_conversion": "0", "reach": "3134", "clicks": "53", "real_time_result_rate": "1.41", "cost_per_secondary_goal_result": null, "cpc": "0.38", "mobile_app_id": "0", "average_video_play_per_user": "1.55", "cost_per_1000_reached": "6.38", "likes": "36", "shares": "0", "tt_app_id": 0}, "stat_time_day": "2021-10-20 00:00:00", "adgroup_id": 1714125049901106},"emitted_at":1680792355223} +{"stream":"ad_groups_reports","data":{"dimensions": {"stat_time_day": "2021-10-25 00:00:00", "adgroup_id": 1714125049901106}, "metrics": {"conversion": "0", "real_time_conversion_rate": "0.00", "secondary_goal_result_rate": null, "real_time_cost_per_conversion": "0.00", "placement_type": "Automatic Placement", "real_time_app_install": "0", "video_views_p100": "92", "spend": "20.00", "campaign_id": 1714125042508817, "video_views_p75": "140", "clicks_on_music_disc": "0", "video_play_actions": "5173", "follows": "0", "result_rate": "1.18", "secondary_goal_result": null, "app_install": "0", "cost_per_result": "0.290", "comments": "0", "dpa_target_audience_type": null, "profile_visits": "0", "promotion_type": "Website", "ctr": "1.18", "video_views_p25": "513", "real_time_cost_per_result": "0.290", "tt_app_name": "0", "video_watched_6s": "180", "cpm": "3.43", "video_watched_2s": "686", "result": "69", "real_time_app_install_cost": "0.00", "cost_per_conversion": "0.00", "frequency": "1.21", "real_time_result": "69", "campaign_name": "Website Traffic20211020010104", "conversion_rate": "0.00", "impressions": "5830", "average_video_play": "1.52", "video_views_p50": "214", "adgroup_name": "Ad Group20211020010107", "real_time_conversion": "0", "reach": "4806", "clicks": "69", "real_time_result_rate": "1.18", "cost_per_secondary_goal_result": null, "cpc": "0.29", "mobile_app_id": "0", "average_video_play_per_user": "1.64", "cost_per_1000_reached": "4.16", "likes": "36", "shares": "0", "tt_app_id": 0}, "stat_time_day": "2021-10-25 00:00:00", "adgroup_id": 1714125049901106},"emitted_at":1680792355227} +{"stream":"ad_groups_reports","data":{"dimensions": {"stat_time_day": "2021-10-27 00:00:00", "adgroup_id": 1714125049901106}, "metrics": {"conversion": "0", "real_time_conversion_rate": "0.00", "secondary_goal_result_rate": null, "real_time_cost_per_conversion": "0.00", "placement_type": "Automatic Placement", "real_time_app_install": "0", "video_views_p100": "76", "spend": "20.00", "campaign_id": 1714125042508817, "video_views_p75": "108", "clicks_on_music_disc": "0", "video_play_actions": "4179", "follows": "0", "result_rate": "1.09", "secondary_goal_result": null, "app_install": "0", "cost_per_result": "0.392", "comments": "0", "dpa_target_audience_type": null, "profile_visits": "0", "promotion_type": "Website", "ctr": "1.09", "video_views_p25": "355", "real_time_cost_per_result": "0.392", "tt_app_name": "0", "video_watched_6s": "132", "cpm": "4.26", "video_watched_2s": "493", "result": "51", "real_time_app_install_cost": "0.00", "cost_per_conversion": "0.00", "frequency": "1.23", "real_time_result": "51", "campaign_name": "Website Traffic20211020010104", "conversion_rate": "0.00", "impressions": "4696", "average_video_play": "1.48", "video_views_p50": "164", "adgroup_name": "Ad Group20211020010107", "real_time_conversion": "0", "reach": "3822", "clicks": "51", "real_time_result_rate": "1.09", "cost_per_secondary_goal_result": null, "cpc": "0.39", "mobile_app_id": "0", "average_video_play_per_user": "1.61", "cost_per_1000_reached": "5.23", "likes": "18", "shares": "0", "tt_app_id": 0}, "stat_time_day": "2021-10-27 00:00:00", "adgroup_id": 1714125049901106},"emitted_at":1680792355230} +{"stream":"ad_groups_reports","data":{"dimensions": {"stat_time_day": "2021-10-22 00:00:00", "adgroup_id": 1714125049901106}, "metrics": {"conversion": "0", "real_time_conversion_rate": "0.00", "secondary_goal_result_rate": null, "real_time_cost_per_conversion": "0.00", "placement_type": "Automatic Placement", "real_time_app_install": "0", "video_views_p100": "59", "spend": "20.00", "campaign_id": 1714125042508817, "video_views_p75": "74", "clicks_on_music_disc": "0", "video_play_actions": "3118", "follows": "0", "result_rate": "1.19", "secondary_goal_result": null, "app_install": "0", "cost_per_result": "0.476", "comments": "0", "dpa_target_audience_type": null, "profile_visits": "0", "promotion_type": "Website", "ctr": "1.19", "video_views_p25": "277", "real_time_cost_per_result": "0.476", "tt_app_name": "0", "video_watched_6s": "92", "cpm": "5.68", "video_watched_2s": "390", "result": "42", "real_time_app_install_cost": "0.00", "cost_per_conversion": "0.00", "frequency": "1.21", "real_time_result": "42", "campaign_name": "Website Traffic20211020010104", "conversion_rate": "0.00", "impressions": "3520", "average_video_play": "1.46", "video_views_p50": "112", "adgroup_name": "Ad Group20211020010107", "real_time_conversion": "0", "reach": "2908", "clicks": "42", "real_time_result_rate": "1.19", "cost_per_secondary_goal_result": null, "cpc": "0.48", "mobile_app_id": "0", "average_video_play_per_user": "1.57", "cost_per_1000_reached": "6.88", "likes": "17", "shares": "0", "tt_app_id": 0}, "stat_time_day": "2021-10-22 00:00:00", "adgroup_id": 1714125049901106},"emitted_at":1680792355232} +{"stream":"ad_groups_reports","data":{"dimensions": {"stat_time_day": "2021-10-24 00:00:00", "adgroup_id": 1714125049901106}, "metrics": {"conversion": "0", "real_time_conversion_rate": "0.00", "secondary_goal_result_rate": null, "real_time_cost_per_conversion": "0.00", "placement_type": "Automatic Placement", "real_time_app_install": "0", "video_views_p100": "118", "spend": "20.00", "campaign_id": 1714125042508817, "video_views_p75": "155", "clicks_on_music_disc": "0", "video_play_actions": "6433", "follows": "0", "result_rate": "1.08", "secondary_goal_result": null, "app_install": "0", "cost_per_result": "0.253", "comments": "0", "dpa_target_audience_type": null, "profile_visits": "0", "promotion_type": "Website", "ctr": "1.08", "video_views_p25": "663", "real_time_cost_per_result": "0.253", "tt_app_name": "0", "video_watched_6s": "218", "cpm": "2.74", "video_watched_2s": "917", "result": "79", "real_time_app_install_cost": "0.00", "cost_per_conversion": "0.00", "frequency": "1.21", "real_time_result": "79", "campaign_name": "Website Traffic20211020010104", "conversion_rate": "0.00", "impressions": "7310", "average_video_play": "1.55", "video_views_p50": "278", "adgroup_name": "Ad Group20211020010107", "real_time_conversion": "0", "reach": "6028", "clicks": "79", "real_time_result_rate": "1.08", "cost_per_secondary_goal_result": null, "cpc": "0.25", "mobile_app_id": "0", "average_video_play_per_user": "1.66", "cost_per_1000_reached": "3.32", "likes": "56", "shares": "0", "tt_app_id": 0}, "stat_time_day": "2021-10-24 00:00:00", "adgroup_id": 1714125049901106},"emitted_at":1680792355235} {"stream":"campaigns_reports","data":{"metrics":{"real_time_app_install":"0","cpm":"2.740","impressions":"7310","cost_per_1000_reached":"3.318","ctr":"1.08","average_video_play_per_user":"1.66","video_views_p100":"118","follows":"0","video_views_p50":"278","clicks_on_music_disc":"0","video_watched_6s":"218","comments":"0","reach":"6028","shares":"0","campaign_name":"Website Traffic20211020010104","video_watched_2s":"917","likes":"56","app_install":"0","average_video_play":"1.55","spend":"20.000","profile_visits":"0","video_play_actions":"6433","real_time_app_install_cost":"0.000","cpc":"0.250","video_views_p25":"663","video_views_p75":"155","clicks":"79","frequency":"1.21"},"dimensions":{"stat_time_day":"2021-10-24 00:00:00","campaign_id":1714125042508817},"stat_time_day":"2021-10-24 00:00:00","campaign_id":1714125042508817},"emitted_at":1680792415636} {"stream":"campaigns_reports","data":{"metrics":{"real_time_app_install":"0","cpm":"4.260","impressions":"4696","cost_per_1000_reached":"5.233","ctr":"1.09","average_video_play_per_user":"1.61","video_views_p100":"76","follows":"0","video_views_p50":"164","clicks_on_music_disc":"0","video_watched_6s":"132","comments":"0","reach":"3822","shares":"0","campaign_name":"Website Traffic20211020010104","video_watched_2s":"493","likes":"18","app_install":"0","average_video_play":"1.48","spend":"20.000","profile_visits":"0","video_play_actions":"4179","real_time_app_install_cost":"0.000","cpc":"0.390","video_views_p25":"355","video_views_p75":"108","clicks":"51","frequency":"1.23"},"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":1680792415639} {"stream":"campaigns_reports","data":{"metrics":{"real_time_app_install":"0","cpm":"5.680","impressions":"3520","cost_per_1000_reached":"6.878","ctr":"1.19","average_video_play_per_user":"1.57","video_views_p100":"59","follows":"0","video_views_p50":"112","clicks_on_music_disc":"0","video_watched_6s":"92","comments":"0","reach":"2908","shares":"0","campaign_name":"Website Traffic20211020010104","video_watched_2s":"390","likes":"17","app_install":"0","average_video_play":"1.46","spend":"20.000","profile_visits":"0","video_play_actions":"3118","real_time_app_install_cost":"0.000","cpc":"0.480","video_views_p25":"277","video_views_p75":"74","clicks":"42","frequency":"1.21"},"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":1680792415641} diff --git a/airbyte-integrations/connectors/source-tiktok-marketing/source_tiktok_marketing/schemas/ad_groups.json b/airbyte-integrations/connectors/source-tiktok-marketing/source_tiktok_marketing/schemas/ad_groups.json index d958b38cf2d26..c62bfa875b4a9 100644 --- a/airbyte-integrations/connectors/source-tiktok-marketing/source_tiktok_marketing/schemas/ad_groups.json +++ b/airbyte-integrations/connectors/source-tiktok-marketing/source_tiktok_marketing/schemas/ad_groups.json @@ -437,6 +437,33 @@ "items": { "type": "string" } + }, + "contextual_tag_ids": { + "type": ["null", "array"], + "items": { + "type": ["null", "string"] + } + }, + "household_income": { + "type": ["null", "array"], + "items": { + "type": ["null", "string"] + } + }, + "isp_ids": { + "type": ["null", "array"], + "items": { + "type": ["null", "string"] + } + }, + "spending_power": { + "type": ["null", "string"] + }, + "zipcode_ids": { + "type": ["null", "array"], + "items": { + "type": ["null", "string"] + } } } } diff --git a/airbyte-integrations/connectors/source-tiktok-marketing/source_tiktok_marketing/schemas/ads.json b/airbyte-integrations/connectors/source-tiktok-marketing/source_tiktok_marketing/schemas/ads.json index 83cf9fe8164f9..67b9f9b489ec5 100644 --- a/airbyte-integrations/connectors/source-tiktok-marketing/source_tiktok_marketing/schemas/ads.json +++ b/airbyte-integrations/connectors/source-tiktok-marketing/source_tiktok_marketing/schemas/ads.json @@ -116,6 +116,9 @@ "click_tracking_url": { "type": ["null", "string"] }, + "tracking_pixel_id": { + "type": ["null", "integer"] + }, "deeplink": { "type": ["null", "string"] }, diff --git a/airbyte-integrations/connectors/source-tiktok-marketing/source_tiktok_marketing/schemas/campaigns.json b/airbyte-integrations/connectors/source-tiktok-marketing/source_tiktok_marketing/schemas/campaigns.json index a2671c009fe17..81291b0f55a1d 100644 --- a/airbyte-integrations/connectors/source-tiktok-marketing/source_tiktok_marketing/schemas/campaigns.json +++ b/airbyte-integrations/connectors/source-tiktok-marketing/source_tiktok_marketing/schemas/campaigns.json @@ -67,6 +67,12 @@ }, "is_search_campaign": { "type": ["null", "boolean"] + }, + "app_promotion_type": { + "type": ["null", "string"] + }, + "rf_campaign_type": { + "type": ["null", "string"] } } } From 0da6a447b50845a62168a7587629adb5c0592481 Mon Sep 17 00:00:00 2001 From: Denys Davydov Date: Tue, 17 Oct 2023 11:08:49 +0300 Subject: [PATCH 8/8] update expected records --- .../integration_tests/expected_records.jsonl | 100 +++++++++--------- .../integration_tests/expected_records2.jsonl | 80 +++++++------- 2 files changed, 90 insertions(+), 90 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 f8b7e9c4f2e23..31d5e68b4e2f7 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": {"description": "https://", "contacter": "Ai***te", "license_city": null, "timezone": "Etc/GMT+8", "promotion_center_province": null, "address": "350 29th avenue, San Francisco", "country": "US", "brand": null, "status": "STATUS_ENABLE", "role": "ROLE_ADVERTISER", "rejection_reason": "", "email": "i***************@**********", "license_province": null, "industry": "291905", "license_no": "", "name": "Airbyte0830", "create_time": 1630335591, "promotion_area": "0", "advertiser_account_type": "AUCTION", "cellphone_number": "+13477****53", "company": "Airbyte", "advertiser_id": 7002238017842757633, "promotion_center_city": null, "telephone_number": "+14156****85", "display_timezone": "America/Los_Angeles", "license_url": null, "currency": "USD", "language": "en", "balance": 10}, "emitted_at": 1691143342127} -{"stream": "ads", "data": {"app_name": "", "fallback_type": "UNSET", "advertiser_id": 7002238017842757633, "landing_page_urls": null, "brand_safety_postbid_partner": "UNSET", "campaign_id": 1728545382536225, "adgroup_id": 1728545385226289, "campaign_name": "CampaignVadimTraffic", "page_id": null, "avatar_icon_web_uri": "ad-site-i18n-sg/202203285d0de5c114d0690a462bb6a4", "ad_texts": null, "create_time": "2022-03-28 12:09:09", "profile_image_url": "https://p21-ad-sg.ibyteimg.com/large/ad-site-i18n-sg/202203285d0de5c114d0690a462bb6a4", "playable_url": "", "click_tracking_url": null, "is_aco": false, "impression_tracking_url": null, "call_to_action_id": "7080120957230238722", "modify_time": "2022-03-28 21:34:26", "image_ids": ["v0201/7f371ff6f0764f8b8ef4f37d7b980d50"], "operation_status": "ENABLE", "viewability_postbid_partner": "UNSET", "identity_type": "CUSTOMIZED_USER", "creative_type": null, "deeplink": "", "adgroup_name": "AdGroupVadim", "ad_name": "AdVadim-Optimized Version 3_202203281449_2022-03-28 05:03:44", "display_name": "airbyte", "viewability_vast_url": null, "brand_safety_vast_url": null, "identity_id": "7080121820963422209", "secondary_status": "AD_STATUS_CAMPAIGN_DISABLE", "deeplink_type": "NORMAL", "creative_authorized": false, "optimization_event": null, "video_id": "v10033g50000c90q1d3c77ub6e96fvo0", "ad_format": "SINGLE_VIDEO", "ad_id": 1728545390695442, "ad_text": "Open-source\ndata integration for modern data teams", "card_id": null, "landing_page_url": "https://airbyte.com", "vast_moat_enabled": false, "music_id": null, "is_new_structure": true}, "emitted_at": 1691143343208} -{"stream": "ads", "data": {"app_name": "", "fallback_type": "UNSET", "advertiser_id": 7002238017842757633, "landing_page_urls": null, "brand_safety_postbid_partner": "UNSET", "campaign_id": 1714125042508817, "adgroup_id": 1714125049901106, "campaign_name": "Website Traffic20211020010104", "page_id": null, "avatar_icon_web_uri": "ad-site-i18n-sg/202110205d0d488b68ead898460bad74", "ad_texts": null, "create_time": "2021-10-20 08:04:06", "profile_image_url": "https://p21-ad-sg.ibyteimg.com/large/ad-site-i18n-sg/202110205d0d488b68ead898460bad74", "playable_url": "", "click_tracking_url": null, "is_aco": false, "impression_tracking_url": null, "call_to_action_id": null, "modify_time": "2021-10-21 17:50:11", "image_ids": ["v0201/8f77082a1f3c40c586f8282356490c58"], "call_to_action": "LEARN_MORE", "operation_status": "ENABLE", "viewability_postbid_partner": "UNSET", "identity_type": "UNSET", "creative_type": null, "deeplink": "", "adgroup_name": "Ad Group20211020010107", "ad_name": "Optimized Version 4_202110201102_2021-10-20 11:02:00", "display_name": "Airbyte", "viewability_vast_url": null, "brand_safety_vast_url": null, "identity_id": "", "secondary_status": "AD_STATUS_CAMPAIGN_DISABLE", "deeplink_type": "NORMAL", "creative_authorized": true, "optimization_event": null, "video_id": "v10033g50000c5nsqcbc77ubdn136b70", "ad_format": "SINGLE_VIDEO", "ad_id": 1714125051115569, "ad_text": "Airbyte - data portabioolity platform - from anywhere to anywhere!", "card_id": null, "landing_page_url": "https://airbyte.io", "vast_moat_enabled": false, "music_id": null, "is_new_structure": true}, "emitted_at": 1691143343209} -{"stream": "ads", "data": {"app_name": "", "fallback_type": "UNSET", "advertiser_id": 7002238017842757633, "landing_page_urls": null, "brand_safety_postbid_partner": "UNSET", "campaign_id": 1714124576938033, "adgroup_id": 1714124588896305, "campaign_name": "Website Traffic20211020005342", "page_id": null, "avatar_icon_web_uri": "ad-site-i18n-sg/202110205d0d4ce78859d72d409eb82d", "ad_texts": null, "create_time": "2021-10-20 07:56:39", "profile_image_url": "https://p21-ad-sg.ibyteimg.com/large/ad-site-i18n-sg/202110205d0d4ce78859d72d409eb82d", "playable_url": "", "click_tracking_url": null, "is_aco": false, "impression_tracking_url": null, "call_to_action_id": null, "modify_time": "2021-10-20 08:05:12", "image_ids": ["ad-site-i18n-sg/202110195d0db51e12a222ee4334a396"], "call_to_action": "LEARN_MORE", "operation_status": "DISABLE", "viewability_postbid_partner": "UNSET", "identity_type": "UNSET", "creative_type": null, "deeplink": "", "adgroup_name": "Ad Group20211020005346", "ad_name": "1200x1200 logo_1634667070143.png_2021-10-20 10:54:51", "display_name": "Airbyte", "viewability_vast_url": null, "brand_safety_vast_url": null, "identity_id": "", "secondary_status": "AD_STATUS_CAMPAIGN_DISABLE", "deeplink_type": "NORMAL", "creative_authorized": false, "optimization_event": null, "video_id": null, "ad_format": "SINGLE_IMAGE", "ad_id": 1714124564763650, "ad_text": "Airbyte - open source data portability platform - from nywhere to anywhere!", "card_id": null, "landing_page_url": "https://airbyte.io", "vast_moat_enabled": false, "music_id": null, "is_new_structure": true}, "emitted_at": 1691143343210} -{"stream": "ad_groups", "data": {"secondary_optimization_event": null, "operating_systems": [], "interest_keyword_ids": [], "campaign_name": "CampaignVadimTraffic", "pixel_id": null, "device_price_ranges": [], "excluded_custom_actions": [], "skip_learning_phase": 0, "delivery_mode": null, "pacing": "PACING_MODE_SMOOTH", "languages": [], "age_groups": ["AGE_25_34", "AGE_35_44"], "adgroup_app_profile_page_state": null, "search_result_enabled": false, "placement_type": "PLACEMENT_TYPE_AUTOMATIC", "video_download_disabled": false, "billing_event": "CPC", "app_download_url": null, "conversion_window": null, "optimization_goal": "CLICK", "adgroup_id": 1728545385226289, "excluded_audience_ids": [], "auto_targeting_enabled": false, "gender": "GENDER_UNLIMITED", "is_new_structure": true, "brand_safety_type": "NO_BRAND_SAFETY", "adgroup_name": "AdGroupVadim", "budget": 20, "schedule_end_time": "2032-03-25 13:02:23", "statistic_type": null, "schedule_start_time": "2022-03-28 13:02:23", "schedule_type": "SCHEDULE_FROM_NOW", "category_exclusion_ids": [], "operation_status": "ENABLE", "rf_estimated_cpr": null, "network_types": [], "deep_cpa_bid": 0, "frequency_schedule": null, "bid_display_mode": "CPMV", "inventory_filter_enabled": false, "next_day_retention": null, "rf_estimated_frequency": null, "share_disabled": false, "bid_price": 0, "keywords": null, "promotion_type": "WEBSITE", "comment_disabled": false, "budget_mode": "BUDGET_MODE_DAY", "creative_material_mode": "CUSTOM", "category_id": 0, "deep_bid_type": null, "dayparting": "111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111", "secondary_status": "ADGROUP_STATUS_CAMPAIGN_DISABLE", "optimization_event": null, "location_ids": [6252001], "actions": [], "app_type": null, "brand_safety_partner": null, "bid_type": "BID_TYPE_NO_BID", "placements": ["PLACEMENT_TIKTOK", "PLACEMENT_TOPBUZZ", "PLACEMENT_PANGLE"], "campaign_id": 1728545382536225, "modify_time": "2022-03-31 08:13:30", "rf_purchased_type": null, "audience_ids": [], "advertiser_id": 7002238017842757633, "conversion_bid_price": 0, "app_id": null, "is_hfss": false, "feed_type": null, "device_model_ids": [], "schedule_infos": null, "included_custom_actions": [], "ios14_quota_type": "UNOCCUPIED", "scheduled_budget": 0, "frequency": null, "is_smart_performance_campaign": false, "create_time": "2022-03-28 12:09:07", "interest_category_ids": [15], "purchased_impression": null, "purchased_reach": null}, "emitted_at": 1691143344341} -{"stream": "ad_groups", "data": {"secondary_optimization_event": null, "operating_systems": [], "interest_keyword_ids": [], "campaign_name": "Website Traffic20211020010104", "pixel_id": null, "device_price_ranges": [], "excluded_custom_actions": [], "skip_learning_phase": 0, "delivery_mode": null, "pacing": "PACING_MODE_SMOOTH", "languages": ["en"], "age_groups": ["AGE_25_34", "AGE_35_44", "AGE_45_54"], "adgroup_app_profile_page_state": null, "search_result_enabled": false, "placement_type": "PLACEMENT_TYPE_AUTOMATIC", "video_download_disabled": false, "billing_event": "CPC", "app_download_url": null, "conversion_window": null, "optimization_goal": "CLICK", "adgroup_id": 1714125049901106, "excluded_audience_ids": [], "auto_targeting_enabled": false, "gender": "GENDER_UNLIMITED", "is_new_structure": true, "brand_safety_type": "NO_BRAND_SAFETY", "adgroup_name": "Ad Group20211020010107", "budget": 20, "schedule_end_time": "2021-10-31 09:01:07", "statistic_type": null, "schedule_start_time": "2021-10-20 09:01:07", "schedule_type": "SCHEDULE_START_END", "category_exclusion_ids": [], "operation_status": "ENABLE", "rf_estimated_cpr": null, "network_types": [], "deep_cpa_bid": 0, "frequency_schedule": null, "bid_display_mode": "CPMV", "inventory_filter_enabled": false, "next_day_retention": null, "rf_estimated_frequency": null, "share_disabled": false, "bid_price": 0, "keywords": null, "promotion_type": "WEBSITE", "comment_disabled": false, "budget_mode": "BUDGET_MODE_DAY", "creative_material_mode": "CUSTOM", "category_id": 0, "deep_bid_type": null, "dayparting": "111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111", "secondary_status": "ADGROUP_STATUS_CAMPAIGN_DISABLE", "optimization_event": null, "location_ids": [6252001], "actions": [], "app_type": null, "brand_safety_partner": null, "bid_type": "BID_TYPE_NO_BID", "placements": ["PLACEMENT_TIKTOK", "PLACEMENT_TOPBUZZ", "PLACEMENT_PANGLE"], "campaign_id": 1714125042508817, "modify_time": "2022-03-24 12:06:54", "rf_purchased_type": null, "audience_ids": [], "advertiser_id": 7002238017842757633, "conversion_bid_price": 0, "app_id": null, "is_hfss": false, "feed_type": null, "device_model_ids": [], "schedule_infos": null, "included_custom_actions": [], "ios14_quota_type": "UNOCCUPIED", "scheduled_budget": 0, "frequency": null, "is_smart_performance_campaign": false, "create_time": "2021-10-20 08:04:05", "interest_category_ids": [], "purchased_impression": null, "purchased_reach": null}, "emitted_at": 1691143344343} -{"stream": "ad_groups", "data": {"secondary_optimization_event": null, "operating_systems": [], "interest_keyword_ids": [], "campaign_name": "Website Traffic20211020005342", "pixel_id": null, "device_price_ranges": [], "excluded_custom_actions": [], "skip_learning_phase": 0, "delivery_mode": null, "pacing": "PACING_MODE_SMOOTH", "languages": [], "age_groups": null, "adgroup_app_profile_page_state": null, "search_result_enabled": false, "placement_type": "PLACEMENT_TYPE_AUTOMATIC", "video_download_disabled": false, "billing_event": "CPC", "app_download_url": null, "conversion_window": null, "optimization_goal": "CLICK", "adgroup_id": 1714124588896305, "excluded_audience_ids": [], "auto_targeting_enabled": false, "gender": "GENDER_UNLIMITED", "is_new_structure": true, "brand_safety_type": "NO_BRAND_SAFETY", "adgroup_name": "Ad Group20211020005346", "budget": 20, "schedule_end_time": "2021-10-31 08:53:46", "statistic_type": null, "schedule_start_time": "2021-10-20 08:53:46", "schedule_type": "SCHEDULE_START_END", "category_exclusion_ids": [], "operation_status": "DISABLE", "rf_estimated_cpr": null, "network_types": [], "deep_cpa_bid": 0, "frequency_schedule": null, "bid_display_mode": "CPMV", "inventory_filter_enabled": false, "next_day_retention": null, "rf_estimated_frequency": null, "share_disabled": false, "bid_price": 0, "keywords": null, "promotion_type": "WEBSITE", "comment_disabled": false, "budget_mode": "BUDGET_MODE_DAY", "creative_material_mode": "CUSTOM", "category_id": 0, "deep_bid_type": null, "dayparting": "111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111", "secondary_status": "ADGROUP_STATUS_CAMPAIGN_DISABLE", "optimization_event": null, "location_ids": [6252001], "actions": [], "app_type": null, "brand_safety_partner": null, "bid_type": "BID_TYPE_NO_BID", "placements": ["PLACEMENT_TIKTOK", "PLACEMENT_TOPBUZZ", "PLACEMENT_HELO", "PLACEMENT_PANGLE"], "campaign_id": 1714124576938033, "modify_time": "2021-10-20 08:08:14", "rf_purchased_type": null, "audience_ids": [], "advertiser_id": 7002238017842757633, "conversion_bid_price": 0, "app_id": null, "is_hfss": false, "feed_type": null, "device_model_ids": [], "schedule_infos": null, "included_custom_actions": [], "ios14_quota_type": "UNOCCUPIED", "scheduled_budget": 0, "frequency": null, "is_smart_performance_campaign": false, "create_time": "2021-10-20 07:56:39", "interest_category_ids": [], "purchased_impression": null, "purchased_reach": null}, "emitted_at": 1691143344345} -{"stream": "campaigns", "data": {"budget_mode": "BUDGET_MODE_INFINITE", "campaign_type": "REGULAR_CAMPAIGN", "campaign_id": 1728545382536225, "roas_bid": 0, "budget": 0, "operation_status": "DISABLE", "objective_type": "TRAFFIC", "is_smart_performance_campaign": false, "deep_bid_type": null, "campaign_name": "CampaignVadimTraffic", "create_time": "2022-03-28 12:09:05", "objective": "LANDING_PAGE", "advertiser_id": 7002238017842757633, "secondary_status": "CAMPAIGN_STATUS_DISABLE", "is_new_structure": true, "is_search_campaign": false, "modify_time": "2022-03-30 21:23:52"}, "emitted_at": 1697462159049} -{"stream": "campaigns", "data": {"budget_mode": "BUDGET_MODE_INFINITE", "campaign_type": "REGULAR_CAMPAIGN", "campaign_id": 1714125042508817, "roas_bid": 0, "budget": 0, "operation_status": "DISABLE", "objective_type": "TRAFFIC", "is_smart_performance_campaign": false, "deep_bid_type": null, "campaign_name": "Website Traffic20211020010104", "create_time": "2021-10-20 08:04:04", "objective": "LANDING_PAGE", "advertiser_id": 7002238017842757633, "secondary_status": "CAMPAIGN_STATUS_DISABLE", "is_new_structure": true, "is_search_campaign": false, "modify_time": "2022-03-24 12:08:29"}, "emitted_at": 1697462159052} -{"stream": "campaigns", "data": {"budget_mode": "BUDGET_MODE_INFINITE", "campaign_type": "REGULAR_CAMPAIGN", "campaign_id": 1714124576938033, "roas_bid": 0, "budget": 0, "operation_status": "DISABLE", "objective_type": "TRAFFIC", "is_smart_performance_campaign": false, "deep_bid_type": null, "campaign_name": "Website Traffic20211020005342", "create_time": "2021-10-20 07:56:38", "objective": "LANDING_PAGE", "advertiser_id": 7002238017842757633, "secondary_status": "CAMPAIGN_STATUS_DISABLE", "is_new_structure": true, "is_search_campaign": false, "modify_time": "2021-10-20 08:01:18"}, "emitted_at": 1697462159054} -{"stream": "advertiser_ids", "data": {"advertiser_id": 7001035076276387841, "advertiser_name": "Airbyte0827"}, "emitted_at": 1691143345771} -{"stream": "advertiser_ids", "data": {"advertiser_id": 7001040009704833026, "advertiser_name": "Airbyte08270"}, "emitted_at": 1691143345772} -{"stream": "advertiser_ids", "data": {"advertiser_id": 7002238017842757633, "advertiser_name": "Airbyte0830"}, "emitted_at": 1691143345772} -{"stream": "ads_reports_daily", "data": {"metrics": {"mobile_app_id": "0", "result": "69", "follows": "0", "cost_per_secondary_goal_result": null, "ctr": "1.18", "promotion_type": "Website", "clicks_on_music_disc": "0", "real_time_conversion": "0", "real_time_result": "69", "total_complete_payment_rate": "0.000", "frequency": "1.21", "placement_type": "Automatic Placement", "ad_text": "Airbyte - data portabioolity platform - from anywhere to anywhere!", "shares": "0", "video_views_p75": "140", "spend": "20.000", "cost_per_1000_reached": "4.161", "likes": "36", "video_watched_2s": "686", "video_views_p50": "214", "complete_payment": "0", "cpc": "0.290", "vta_purchase": "0", "real_time_result_rate": "1.18", "real_time_conversion_rate": "0.00", "comments": "0", "conversion": "0", "ad_name": "Optimized Version 4_202110201102_2021-10-20 11:02:00", "average_video_play": "1.52", "onsite_shopping": "0", "campaign_id": 1714125042508817, "cta_purchase": "0", "video_views_p25": "513", "video_watched_6s": "180", "conversion_rate": "0.00", "cost_per_conversion": "0.000", "cpm": "3.430", "secondary_goal_result_rate": null, "impressions": "5830", "video_views_p100": "92", "total_purchase_value": "0.000", "vta_conversion": "0", "reach": "4806", "adgroup_id": 1714125049901106, "profile_visits": "0", "dpa_target_audience_type": null, "clicks": "69", "real_time_app_install_cost": "0.000", "real_time_cost_per_result": "0.2899", "value_per_complete_payment": "0.000", "secondary_goal_result": null, "campaign_name": "Website Traffic20211020010104", "tt_app_id": 0, "average_video_play_per_user": "1.64", "real_time_app_install": "0", "adgroup_name": "Ad Group20211020010107", "tt_app_name": "0", "video_play_actions": "5173", "cost_per_result": "0.2899", "app_install": "0", "real_time_cost_per_conversion": "0.000", "total_onsite_shopping_value": "0.000", "cta_conversion": "0", "total_pageview": "0", "result_rate": "1.18"}, "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": 1691143872903} -{"stream": "ads_reports_daily", "data": {"metrics": {"mobile_app_id": "0", "result": "53", "follows": "0", "cost_per_secondary_goal_result": null, "ctr": "1.41", "promotion_type": "Website", "clicks_on_music_disc": "0", "real_time_conversion": "0", "real_time_result": "53", "total_complete_payment_rate": "0.000", "frequency": "1.20", "placement_type": "Automatic Placement", "ad_text": "Airbyte - data portabioolity platform - from anywhere to anywhere!", "shares": "0", "video_views_p75": "74", "spend": "20.000", "cost_per_1000_reached": "6.382", "likes": "36", "video_watched_2s": "408", "video_views_p50": "130", "complete_payment": "0", "cpc": "0.380", "vta_purchase": "0", "real_time_result_rate": "1.41", "real_time_conversion_rate": "0.00", "comments": "1", "conversion": "0", "ad_name": "Optimized Version 4_202110201102_2021-10-20 11:02:00", "average_video_play": "1.45", "onsite_shopping": "0", "campaign_id": 1714125042508817, "cta_purchase": "0", "video_views_p25": "295", "video_watched_6s": "106", "conversion_rate": "0.00", "cost_per_conversion": "0.000", "cpm": "5.310", "secondary_goal_result_rate": null, "impressions": "3765", "video_views_p100": "52", "total_purchase_value": "0.000", "vta_conversion": "0", "reach": "3134", "adgroup_id": 1714125049901106, "profile_visits": "0", "dpa_target_audience_type": null, "clicks": "53", "real_time_app_install_cost": "0.000", "real_time_cost_per_result": "0.3774", "value_per_complete_payment": "0.000", "secondary_goal_result": null, "campaign_name": "Website Traffic20211020010104", "tt_app_id": 0, "average_video_play_per_user": "1.55", "real_time_app_install": "0", "adgroup_name": "Ad Group20211020010107", "tt_app_name": "0", "video_play_actions": "3344", "cost_per_result": "0.3774", "app_install": "0", "real_time_cost_per_conversion": "0.000", "total_onsite_shopping_value": "0.000", "cta_conversion": "0", "total_pageview": "0", "result_rate": "1.41"}, "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": 1691143872907} -{"stream": "ads_reports_daily", "data": {"metrics": {"mobile_app_id": "0", "result": "46", "follows": "0", "cost_per_secondary_goal_result": null, "ctr": "1.23", "promotion_type": "Website", "clicks_on_music_disc": "0", "real_time_conversion": "0", "real_time_result": "46", "total_complete_payment_rate": "0.000", "frequency": "1.20", "placement_type": "Automatic Placement", "ad_text": "Airbyte - data portabioolity platform - from anywhere to anywhere!", "shares": "0", "video_views_p75": "90", "spend": "20.000", "cost_per_1000_reached": "6.412", "likes": "25", "video_watched_2s": "413", "video_views_p50": "142", "complete_payment": "0", "cpc": "0.430", "vta_purchase": "0", "real_time_result_rate": "1.23", "real_time_conversion_rate": "0.00", "comments": "1", "conversion": "0", "ad_name": "Optimized Version 4_202110201102_2021-10-20 11:02:00", "average_video_play": "1.50", "onsite_shopping": "0", "campaign_id": 1714125042508817, "cta_purchase": "0", "video_views_p25": "297", "video_watched_6s": "112", "conversion_rate": "0.00", "cost_per_conversion": "0.000", "cpm": "5.330", "secondary_goal_result_rate": null, "impressions": "3750", "video_views_p100": "71", "total_purchase_value": "0.000", "vta_conversion": "0", "reach": "3119", "adgroup_id": 1714125049901106, "profile_visits": "0", "dpa_target_audience_type": null, "clicks": "46", "real_time_app_install_cost": "0.000", "real_time_cost_per_result": "0.4348", "value_per_complete_payment": "0.000", "secondary_goal_result": null, "campaign_name": "Website Traffic20211020010104", "tt_app_id": 0, "average_video_play_per_user": "1.61", "real_time_app_install": "0", "adgroup_name": "Ad Group20211020010107", "tt_app_name": "0", "video_play_actions": "3344", "cost_per_result": "0.4348", "app_install": "0", "real_time_cost_per_conversion": "0.000", "total_onsite_shopping_value": "0.000", "cta_conversion": "0", "total_pageview": "0", "result_rate": "1.23"}, "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": 1691143872911} -{"stream": "ads_reports_lifetime", "data": {"dimensions": {"ad_id": 1728545390695442}, "metrics": {"app_install": "0", "average_video_play": "1.26", "complete_payment": "0", "video_watched_2s": "1364", "clicks": "145", "clicks_on_music_disc": "0", "total_onsite_shopping_value": "0.000", "real_time_app_install_cost": "0.000", "video_views_p100": "402", "result_rate": "0.92", "result": "145", "value_per_complete_payment": "0.000", "secondary_goal_result_rate": null, "ctr": "0.92", "total_pageview": "0", "cpc": "0.410", "campaign_name": "CampaignVadimTraffic", "conversion": "0", "tt_app_id": 0, "real_time_cost_per_conversion": "0.000", "real_time_cost_per_result": "0.4138", "video_watched_6s": "402", "cost_per_conversion": "0.000", "follows": "0", "comments": "0", "impressions": "15689", "cta_purchase": "0", "dpa_target_audience_type": null, "total_complete_payment_rate": "0.000", "promotion_type": "Website", "video_play_actions": "14333", "cta_conversion": "0", "real_time_result": "145", "tt_app_name": "0", "mobile_app_id": "0", "spend": "60.000", "ad_name": "AdVadim-Optimized Version 3_202203281449_2022-03-28 05:03:44", "real_time_conversion_rate": "0.00", "cpm": "3.820", "shares": "0", "frequency": "1.20", "reach": "13052", "adgroup_id": 1728545385226289, "video_views_p50": "907", "likes": "11", "vta_purchase": "0", "onsite_shopping": "0", "conversion_rate": "0.00", "real_time_app_install": "0", "total_purchase_value": "0.000", "average_video_play_per_user": "1.39", "cost_per_secondary_goal_result": null, "adgroup_name": "AdGroupVadim", "campaign_id": 1728545382536225, "real_time_result_rate": "0.92", "cost_per_1000_reached": "4.597", "video_views_p75": "522", "ad_text": "Open-source\ndata integration for modern data teams", "secondary_goal_result": null, "profile_visits": "0", "vta_conversion": "0", "placement_type": "Automatic Placement", "video_views_p25": "3339", "real_time_conversion": "0", "cost_per_result": "0.4138"}, "ad_id": 1728545390695442}, "emitted_at": 1691143894042} -{"stream": "ads_reports_lifetime", "data": {"dimensions": {"ad_id": 1714125051115569}, "metrics": {"app_install": "0", "average_video_play": "1.48", "complete_payment": "0", "video_watched_2s": "5100", "clicks": "540", "clicks_on_music_disc": "0", "total_onsite_shopping_value": "0.000", "real_time_app_install_cost": "0.000", "video_views_p100": "723", "result_rate": "1.17", "result": "540", "value_per_complete_payment": "0.000", "secondary_goal_result_rate": null, "ctr": "1.17", "total_pageview": "0", "cpc": "0.370", "campaign_name": "Website Traffic20211020010104", "conversion": "0", "tt_app_id": 0, "real_time_cost_per_conversion": "0.000", "real_time_cost_per_result": "0.3704", "video_watched_6s": "1295", "cost_per_conversion": "0.000", "follows": "0", "comments": "2", "impressions": "46116", "cta_purchase": "0", "dpa_target_audience_type": null, "total_complete_payment_rate": "0.000", "promotion_type": "Website", "video_play_actions": "40753", "cta_conversion": "0", "real_time_result": "540", "tt_app_name": "0", "mobile_app_id": "0", "spend": "200.000", "ad_name": "Optimized Version 4_202110201102_2021-10-20 11:02:00", "real_time_conversion_rate": "0.00", "cpm": "4.340", "shares": "0", "frequency": "1.37", "reach": "33556", "adgroup_id": 1714125049901106, "video_views_p50": "1588", "likes": "263", "vta_purchase": "0", "onsite_shopping": "0", "conversion_rate": "0.00", "real_time_app_install": "0", "total_purchase_value": "0.000", "average_video_play_per_user": "1.80", "cost_per_secondary_goal_result": null, "adgroup_name": "Ad Group20211020010107", "campaign_id": 1714125042508817, "real_time_result_rate": "1.17", "cost_per_1000_reached": "5.960", "video_views_p75": "998", "ad_text": "Airbyte - data portabioolity platform - from anywhere to anywhere!", "secondary_goal_result": null, "profile_visits": "0", "vta_conversion": "0", "placement_type": "Automatic Placement", "video_views_p25": "3674", "real_time_conversion": "0", "cost_per_result": "0.3704"}, "ad_id": 1714125051115569}, "emitted_at": 1691143894045} -{"stream": "ads_reports_lifetime", "data": {"dimensions": {"ad_id": 1714124564763650}, "metrics": {"app_install": "0", "average_video_play": "0.00", "complete_payment": "0", "video_watched_2s": "0", "clicks": "0", "clicks_on_music_disc": "0", "total_onsite_shopping_value": "0.000", "real_time_app_install_cost": "0.000", "video_views_p100": "0", "result_rate": "0.00", "result": "0", "value_per_complete_payment": "0.000", "secondary_goal_result_rate": null, "ctr": "0.00", "total_pageview": "0", "cpc": "0.000", "campaign_name": "Website Traffic20211020005342", "conversion": "0", "tt_app_id": 0, "real_time_cost_per_conversion": "0.000", "real_time_cost_per_result": "0.0000", "video_watched_6s": "0", "cost_per_conversion": "0.000", "follows": "0", "comments": "0", "impressions": "0", "cta_purchase": "0", "dpa_target_audience_type": null, "total_complete_payment_rate": "0.000", "promotion_type": "Website", "video_play_actions": "0", "cta_conversion": "0", "real_time_result": "0", "tt_app_name": "0", "mobile_app_id": "0", "spend": "0.000", "ad_name": "1200x1200 logo_1634667070143.png_2021-10-20 10:54:51", "real_time_conversion_rate": "0.00", "cpm": "0.000", "shares": "0", "frequency": "0.00", "reach": "0", "adgroup_id": 1714124588896305, "video_views_p50": "0", "likes": "0", "vta_purchase": "0", "onsite_shopping": "0", "conversion_rate": "0.00", "real_time_app_install": "0", "total_purchase_value": "0.000", "average_video_play_per_user": "0.00", "cost_per_secondary_goal_result": null, "adgroup_name": "Ad Group20211020005346", "campaign_id": 1714124576938033, "real_time_result_rate": "0.00", "cost_per_1000_reached": "0.000", "video_views_p75": "0", "ad_text": "Airbyte - open source data portability platform - from nywhere to anywhere!", "secondary_goal_result": null, "profile_visits": "0", "vta_conversion": "0", "placement_type": "Automatic Placement", "video_views_p25": "0", "real_time_conversion": "0", "cost_per_result": "0.0000"}, "ad_id": 1714124564763650}, "emitted_at": 1691143894049} -{"stream": "ad_groups_reports_daily", "data": {"metrics": {"conversion": "0", "conversion_rate": "0.00", "real_time_cost_per_conversion": "0.000", "comments": "1", "campaign_name": "Website Traffic20211020010104", "real_time_cost_per_result": "0.3774", "cost_per_1000_reached": "6.382", "cpc": "0.380", "average_video_play_per_user": "1.55", "likes": "36", "real_time_conversion_rate": "0.00", "dpa_target_audience_type": null, "mobile_app_id": "0", "video_views_p25": "295", "video_watched_2s": "408", "cpm": "5.310", "app_install": "0", "frequency": "1.20", "adgroup_name": "Ad Group20211020010107", "clicks_on_music_disc": "0", "real_time_app_install_cost": "0.000", "tt_app_id": 0, "cost_per_conversion": "0.000", "video_views_p75": "74", "real_time_app_install": "0", "shares": "0", "secondary_goal_result": null, "promotion_type": "Website", "clicks": "53", "cost_per_result": "0.3774", "result_rate": "1.41", "video_views_p50": "130", "video_play_actions": "3344", "placement_type": "Automatic Placement", "real_time_result_rate": "1.41", "cost_per_secondary_goal_result": null, "real_time_result": "53", "reach": "3134", "video_watched_6s": "106", "average_video_play": "1.45", "tt_app_name": "0", "impressions": "3765", "follows": "0", "real_time_conversion": "0", "campaign_id": 1714125042508817, "ctr": "1.41", "secondary_goal_result_rate": null, "profile_visits": "0", "result": "53", "video_views_p100": "52", "spend": "20.000"}, "dimensions": {"stat_time_day": "2021-10-20 00:00:00", "adgroup_id": 1714125049901106}, "stat_time_day": "2021-10-20 00:00:00", "adgroup_id": 1714125049901106}, "emitted_at": 1691144407230} -{"stream": "ad_groups_reports_daily", "data": {"metrics": {"conversion": "0", "conversion_rate": "0.00", "real_time_cost_per_conversion": "0.000", "comments": "0", "campaign_name": "Website Traffic20211020010104", "real_time_cost_per_result": "0.2899", "cost_per_1000_reached": "4.161", "cpc": "0.290", "average_video_play_per_user": "1.64", "likes": "36", "real_time_conversion_rate": "0.00", "dpa_target_audience_type": null, "mobile_app_id": "0", "video_views_p25": "513", "video_watched_2s": "686", "cpm": "3.430", "app_install": "0", "frequency": "1.21", "adgroup_name": "Ad Group20211020010107", "clicks_on_music_disc": "0", "real_time_app_install_cost": "0.000", "tt_app_id": 0, "cost_per_conversion": "0.000", "video_views_p75": "140", "real_time_app_install": "0", "shares": "0", "secondary_goal_result": null, "promotion_type": "Website", "clicks": "69", "cost_per_result": "0.2899", "result_rate": "1.18", "video_views_p50": "214", "video_play_actions": "5173", "placement_type": "Automatic Placement", "real_time_result_rate": "1.18", "cost_per_secondary_goal_result": null, "real_time_result": "69", "reach": "4806", "video_watched_6s": "180", "average_video_play": "1.52", "tt_app_name": "0", "impressions": "5830", "follows": "0", "real_time_conversion": "0", "campaign_id": 1714125042508817, "ctr": "1.18", "secondary_goal_result_rate": null, "profile_visits": "0", "result": "69", "video_views_p100": "92", "spend": "20.000"}, "dimensions": {"stat_time_day": "2021-10-25 00:00:00", "adgroup_id": 1714125049901106}, "stat_time_day": "2021-10-25 00:00:00", "adgroup_id": 1714125049901106}, "emitted_at": 1691144407234} -{"stream": "ad_groups_reports_daily", "data": {"metrics": {"conversion": "0", "conversion_rate": "0.00", "real_time_cost_per_conversion": "0.000", "comments": "0", "campaign_name": "Website Traffic20211020010104", "real_time_cost_per_result": "0.5000", "cost_per_1000_reached": "5.523", "cpc": "0.500", "average_video_play_per_user": "1.50", "likes": "13", "real_time_conversion_rate": "0.00", "dpa_target_audience_type": null, "mobile_app_id": "0", "video_views_p25": "306", "video_watched_2s": "436", "cpm": "4.550", "app_install": "0", "frequency": "1.21", "adgroup_name": "Ad Group20211020010107", "clicks_on_music_disc": "0", "real_time_app_install_cost": "0.000", "tt_app_id": 0, "cost_per_conversion": "0.000", "video_views_p75": "85", "real_time_app_install": "0", "shares": "0", "secondary_goal_result": null, "promotion_type": "Website", "clicks": "40", "cost_per_result": "0.5000", "result_rate": "0.91", "video_views_p50": "130", "video_play_actions": "3852", "placement_type": "Automatic Placement", "real_time_result_rate": "0.91", "cost_per_secondary_goal_result": null, "real_time_result": "40", "reach": "3621", "video_watched_6s": "104", "average_video_play": "1.41", "tt_app_name": "0", "impressions": "4394", "follows": "0", "real_time_conversion": "0", "campaign_id": 1714125042508817, "ctr": "0.91", "secondary_goal_result_rate": null, "profile_visits": "0", "result": "40", "video_views_p100": "66", "spend": "20.000"}, "dimensions": {"stat_time_day": "2021-10-29 00:00:00", "adgroup_id": 1714125049901106}, "stat_time_day": "2021-10-29 00:00:00", "adgroup_id": 1714125049901106}, "emitted_at": 1691144407237} -{"stream": "ad_groups_reports_lifetime", "data": {"metrics": {"secondary_goal_result_rate": null, "follows": "0", "dpa_target_audience_type": null, "campaign_name": "CampaignVadimTraffic", "video_views_p75": "522", "video_views_p25": "3339", "real_time_app_install_cost": "0.000", "cost_per_conversion": "0.000", "placement_type": "Automatic Placement", "tt_app_name": "0", "spend": "60.000", "clicks_on_music_disc": "0", "cost_per_secondary_goal_result": null, "result": "145", "app_install": "0", "video_views_p100": "402", "shares": "0", "secondary_goal_result": null, "profile_visits": "0", "mobile_app_id": "0", "average_video_play_per_user": "1.39", "average_video_play": "1.26", "conversion_rate": "0.00", "real_time_result": "145", "frequency": "1.20", "real_time_conversion_rate": "0.00", "cpm": "3.820", "adgroup_name": "AdGroupVadim", "cpc": "0.410", "reach": "13052", "campaign_id": 1728545382536225, "video_watched_6s": "402", "cost_per_result": "0.4138", "result_rate": "0.92", "video_watched_2s": "1364", "real_time_conversion": "0", "real_time_cost_per_result": "0.4138", "real_time_result_rate": "0.92", "real_time_app_install": "0", "tt_app_id": 0, "promotion_type": "Website", "video_play_actions": "14333", "cost_per_1000_reached": "4.597", "impressions": "15689", "video_views_p50": "907", "comments": "0", "likes": "11", "conversion": "0", "real_time_cost_per_conversion": "0.000", "clicks": "145", "ctr": "0.92"}, "dimensions": {"adgroup_id": 1728545385226289}, "adgroup_id": 1728545385226289}, "emitted_at": 1691144426151} -{"stream": "ad_groups_reports_lifetime", "data": {"metrics": {"secondary_goal_result_rate": null, "follows": "0", "dpa_target_audience_type": null, "campaign_name": "Website Traffic20211020010104", "video_views_p75": "998", "video_views_p25": "3674", "real_time_app_install_cost": "0.000", "cost_per_conversion": "0.000", "placement_type": "Automatic Placement", "tt_app_name": "0", "spend": "200.000", "clicks_on_music_disc": "0", "cost_per_secondary_goal_result": null, "result": "540", "app_install": "0", "video_views_p100": "723", "shares": "0", "secondary_goal_result": null, "profile_visits": "0", "mobile_app_id": "0", "average_video_play_per_user": "1.80", "average_video_play": "1.48", "conversion_rate": "0.00", "real_time_result": "540", "frequency": "1.37", "real_time_conversion_rate": "0.00", "cpm": "4.340", "adgroup_name": "Ad Group20211020010107", "cpc": "0.370", "reach": "33556", "campaign_id": 1714125042508817, "video_watched_6s": "1295", "cost_per_result": "0.3704", "result_rate": "1.17", "video_watched_2s": "5100", "real_time_conversion": "0", "real_time_cost_per_result": "0.3704", "real_time_result_rate": "1.17", "real_time_app_install": "0", "tt_app_id": 0, "promotion_type": "Website", "video_play_actions": "40753", "cost_per_1000_reached": "5.960", "impressions": "46116", "video_views_p50": "1588", "comments": "2", "likes": "263", "conversion": "0", "real_time_cost_per_conversion": "0.000", "clicks": "540", "ctr": "1.17"}, "dimensions": {"adgroup_id": 1714125049901106}, "adgroup_id": 1714125049901106}, "emitted_at": 1691144426155} -{"stream": "ad_groups_reports_lifetime", "data": {"metrics": {"secondary_goal_result_rate": null, "follows": "0", "dpa_target_audience_type": null, "campaign_name": "Website Traffic20211020005342", "video_views_p75": "0", "video_views_p25": "0", "real_time_app_install_cost": "0.000", "cost_per_conversion": "0.000", "placement_type": "Automatic Placement", "tt_app_name": "0", "spend": "0.000", "clicks_on_music_disc": "0", "cost_per_secondary_goal_result": null, "result": "0", "app_install": "0", "video_views_p100": "0", "shares": "0", "secondary_goal_result": null, "profile_visits": "0", "mobile_app_id": "0", "average_video_play_per_user": "0.00", "average_video_play": "0.00", "conversion_rate": "0.00", "real_time_result": "0", "frequency": "0.00", "real_time_conversion_rate": "0.00", "cpm": "0.000", "adgroup_name": "Ad Group20211020005346", "cpc": "0.000", "reach": "0", "campaign_id": 1714124576938033, "video_watched_6s": "0", "cost_per_result": "0.0000", "result_rate": "0.00", "video_watched_2s": "0", "real_time_conversion": "0", "real_time_cost_per_result": "0.0000", "real_time_result_rate": "0.00", "real_time_app_install": "0", "tt_app_id": 0, "promotion_type": "Website", "video_play_actions": "0", "cost_per_1000_reached": "0.000", "impressions": "0", "video_views_p50": "0", "comments": "0", "likes": "0", "conversion": "0", "real_time_cost_per_conversion": "0.000", "clicks": "0", "ctr": "0.00"}, "dimensions": {"adgroup_id": 1714124588896305}, "adgroup_id": 1714124588896305}, "emitted_at": 1691144426159} -{"stream": "campaigns_reports_daily", "data": {"metrics": {"video_watched_2s": "493", "campaign_name": "Website Traffic20211020010104", "video_views_p50": "164", "average_video_play_per_user": "1.61", "cpc": "0.390", "impressions": "4696", "follows": "0", "video_views_p100": "76", "real_time_app_install": "0", "ctr": "1.09", "clicks_on_music_disc": "0", "comments": "0", "frequency": "1.23", "reach": "3822", "average_video_play": "1.48", "shares": "0", "profile_visits": "0", "video_play_actions": "4179", "video_views_p25": "355", "video_views_p75": "108", "app_install": "0", "clicks": "51", "spend": "20.000", "real_time_app_install_cost": "0.000", "cost_per_1000_reached": "5.233", "video_watched_6s": "132", "likes": "18", "cpm": "4.260"}, "dimensions": {"campaign_id": 1714125042508817, "stat_time_day": "2021-10-27 00:00:00"}, "stat_time_day": "2021-10-27 00:00:00", "campaign_id": 1714125042508817}, "emitted_at": 1691144967333} -{"stream": "campaigns_reports_daily", "data": {"metrics": {"video_watched_2s": "390", "campaign_name": "Website Traffic20211020010104", "video_views_p50": "112", "average_video_play_per_user": "1.57", "cpc": "0.480", "impressions": "3520", "follows": "0", "video_views_p100": "59", "real_time_app_install": "0", "ctr": "1.19", "clicks_on_music_disc": "0", "comments": "0", "frequency": "1.21", "reach": "2908", "average_video_play": "1.46", "shares": "0", "profile_visits": "0", "video_play_actions": "3118", "video_views_p25": "277", "video_views_p75": "74", "app_install": "0", "clicks": "42", "spend": "20.000", "real_time_app_install_cost": "0.000", "cost_per_1000_reached": "6.878", "video_watched_6s": "92", "likes": "17", "cpm": "5.680"}, "dimensions": {"campaign_id": 1714125042508817, "stat_time_day": "2021-10-22 00:00:00"}, "stat_time_day": "2021-10-22 00:00:00", "campaign_id": 1714125042508817}, "emitted_at": 1691144967337} -{"stream": "campaigns_reports_daily", "data": {"metrics": {"video_watched_2s": "471", "campaign_name": "Website Traffic20211020010104", "video_views_p50": "144", "average_video_play_per_user": "1.54", "cpc": "0.420", "impressions": "4787", "follows": "0", "video_views_p100": "70", "real_time_app_install": "0", "ctr": "1.00", "clicks_on_music_disc": "0", "comments": "0", "frequency": "1.22", "reach": "3938", "average_video_play": "1.42", "shares": "0", "profile_visits": "0", "video_play_actions": "4253", "video_views_p25": "328", "video_views_p75": "100", "app_install": "0", "clicks": "48", "spend": "20.000", "real_time_app_install_cost": "0.000", "cost_per_1000_reached": "5.079", "video_watched_6s": "120", "likes": "18", "cpm": "4.180"}, "dimensions": {"campaign_id": 1714125042508817, "stat_time_day": "2021-10-28 00:00:00"}, "stat_time_day": "2021-10-28 00:00:00", "campaign_id": 1714125042508817}, "emitted_at": 1691144967339} -{"stream": "campaigns_reports_lifetime", "data": {"metrics": {"cpm": "3.820", "campaign_name": "CampaignVadimTraffic", "video_views_p25": "3339", "impressions": "15689", "frequency": "1.20", "cpc": "0.410", "follows": "0", "video_play_actions": "14333", "profile_visits": "0", "real_time_app_install": "0", "ctr": "0.92", "cost_per_1000_reached": "4.597", "average_video_play_per_user": "1.39", "likes": "11", "comments": "0", "app_install": "0", "average_video_play": "1.26", "real_time_app_install_cost": "0.000", "video_watched_2s": "1364", "clicks": "145", "video_views_p50": "907", "spend": "60.000", "video_watched_6s": "402", "video_views_p75": "522", "video_views_p100": "402", "shares": "0", "clicks_on_music_disc": "0", "reach": "13052"}, "dimensions": {"campaign_id": 1728545382536225}, "campaign_id": 1728545382536225}, "emitted_at": 1691144987206} -{"stream": "campaigns_reports_lifetime", "data": {"metrics": {"cpm": "4.340", "campaign_name": "Website Traffic20211020010104", "video_views_p25": "3674", "impressions": "46116", "frequency": "1.37", "cpc": "0.370", "follows": "0", "video_play_actions": "40753", "profile_visits": "0", "real_time_app_install": "0", "ctr": "1.17", "cost_per_1000_reached": "5.960", "average_video_play_per_user": "1.80", "likes": "263", "comments": "2", "app_install": "0", "average_video_play": "1.48", "real_time_app_install_cost": "0.000", "video_watched_2s": "5100", "clicks": "540", "video_views_p50": "1588", "spend": "200.000", "video_watched_6s": "1295", "video_views_p75": "998", "video_views_p100": "723", "shares": "0", "clicks_on_music_disc": "0", "reach": "33556"}, "dimensions": {"campaign_id": 1714125042508817}, "campaign_id": 1714125042508817}, "emitted_at": 1691144987209} -{"stream": "campaigns_reports_lifetime", "data": {"metrics": {"cpm": "0.000", "campaign_name": "Website Traffic20211020005342", "video_views_p25": "0", "impressions": "0", "frequency": "0.00", "cpc": "0.000", "follows": "0", "video_play_actions": "0", "profile_visits": "0", "real_time_app_install": "0", "ctr": "0.00", "cost_per_1000_reached": "0.000", "average_video_play_per_user": "0.00", "likes": "0", "comments": "0", "app_install": "0", "average_video_play": "0.00", "real_time_app_install_cost": "0.000", "video_watched_2s": "0", "clicks": "0", "video_views_p50": "0", "spend": "0.000", "video_watched_6s": "0", "video_views_p75": "0", "video_views_p100": "0", "shares": "0", "clicks_on_music_disc": "0", "reach": "0"}, "dimensions": {"campaign_id": 1714124576938033}, "campaign_id": 1714124576938033}, "emitted_at": 1691144987213} -{"stream": "advertisers_reports_daily", "data": {"dimensions": {"stat_time_day": "2021-10-28 00:00:00", "advertiser_id": 7002238017842757633}, "metrics": {"cash_spend": "20.000", "video_views_p75": "100", "spend": "20.000", "app_install": "0", "average_video_play": "1.42", "average_video_play_per_user": "1.54", "frequency": "1.22", "clicks": "48", "video_views_p100": "70", "comments": "0", "real_time_app_install": "0", "likes": "18", "video_watched_6s": "120", "video_views_p25": "328", "ctr": "1.00", "follows": "0", "shares": "0", "cost_per_1000_reached": "5.079", "video_watched_2s": "471", "reach": "3938", "real_time_app_install_cost": "0.000", "cpc": "0.420", "cpm": "4.180", "voucher_spend": "0.000", "video_play_actions": "4253", "profile_visits": "0", "impressions": "4787", "clicks_on_music_disc": "0", "video_views_p50": "144"}, "stat_time_day": "2021-10-28 00:00:00", "advertiser_id": 7002238017842757633}, "emitted_at": 1691145506565} -{"stream": "advertisers_reports_daily", "data": {"dimensions": {"stat_time_day": "2021-10-23 00:00:00", "advertiser_id": 7002238017842757633}, "metrics": {"cash_spend": "20.000", "video_views_p75": "95", "spend": "20.000", "app_install": "0", "average_video_play": "1.53", "average_video_play_per_user": "1.65", "frequency": "1.23", "clicks": "67", "video_views_p100": "65", "comments": "0", "real_time_app_install": "0", "likes": "19", "video_watched_6s": "124", "video_views_p25": "338", "ctr": "1.64", "follows": "0", "shares": "0", "cost_per_1000_reached": "6.020", "video_watched_2s": "463", "reach": "3322", "real_time_app_install_cost": "0.000", "cpc": "0.300", "cpm": "4.910", "voucher_spend": "0.000", "video_play_actions": "3590", "profile_visits": "0", "impressions": "4077", "clicks_on_music_disc": "0", "video_views_p50": "146"}, "stat_time_day": "2021-10-23 00:00:00", "advertiser_id": 7002238017842757633}, "emitted_at": 1691145506568} -{"stream": "advertisers_reports_daily", "data": {"dimensions": {"stat_time_day": "2021-10-26 00:00:00", "advertiser_id": 7002238017842757633}, "metrics": {"cash_spend": "20.000", "video_views_p75": "90", "spend": "20.000", "app_install": "0", "average_video_play": "1.50", "average_video_play_per_user": "1.61", "frequency": "1.20", "clicks": "46", "video_views_p100": "71", "comments": "1", "real_time_app_install": "0", "likes": "25", "video_watched_6s": "112", "video_views_p25": "297", "ctr": "1.23", "follows": "0", "shares": "0", "cost_per_1000_reached": "6.412", "video_watched_2s": "413", "reach": "3119", "real_time_app_install_cost": "0.000", "cpc": "0.430", "cpm": "5.330", "voucher_spend": "0.000", "video_play_actions": "3344", "profile_visits": "0", "impressions": "3750", "clicks_on_music_disc": "0", "video_views_p50": "142"}, "stat_time_day": "2021-10-26 00:00:00", "advertiser_id": 7002238017842757633}, "emitted_at": 1691145506571} -{"stream": "advertisers_reports_lifetime", "data": {"metrics": {"follows": "0", "video_views_p50": "2665", "reach": "50418", "shares": "0", "clicks_on_music_disc": "0", "likes": "328", "video_play_actions": "59390", "spend": "280.000", "video_views_p75": "1636", "app_install": "0", "video_watched_6s": "1838", "video_views_p25": "7364", "video_views_p100": "1205", "ctr": "1.12", "clicks": "750", "cpc": "0.370", "profile_visits": "0", "video_watched_2s": "6941", "comments": "2", "real_time_app_install_cost": "0.000", "cpm": "4.200", "impressions": "66691", "average_video_play": "1.43", "cost_per_1000_reached": "5.554", "real_time_app_install": "0", "average_video_play_per_user": "1.68", "frequency": "1.32"}, "dimensions": {"advertiser_id": 7002238017842757633}, "advertiser_id": 7002238017842757633}, "emitted_at": 1691145526253} -{"stream": "ads_audience_reports_daily", "data": {"metrics": {"spend": "3.690", "ctr": "0.98", "cost_per_conversion": "0.000", "result": "12", "adgroup_name": "Ad Group20211020010107", "cpm": "3.020", "result_rate": "0.98", "real_time_conversion": "0", "placement_type": "Automatic Placement", "impressions": "1222", "real_time_cost_per_result": "0.3075", "real_time_result_rate": "0.98", "promotion_type": "Website", "ad_text": "Airbyte - data portabioolity platform - from anywhere to anywhere!", "campaign_id": 1714125042508817, "dpa_target_audience_type": null, "real_time_result": "12", "ad_name": "Optimized Version 4_202110201102_2021-10-20 11:02:00", "real_time_cost_per_conversion": "0.000", "tt_app_id": "0", "mobile_app_id": "0", "real_time_conversion_rate": "0.00", "conversion_rate": "0.00", "conversion": "0", "cpc": "0.310", "campaign_name": "Website Traffic20211020010104", "cost_per_result": "0.3075", "tt_app_name": "0", "clicks": "12", "adgroup_id": 1714125049901106}, "dimensions": {"stat_time_day": "2021-10-25 00:00:00", "ad_id": 1714125051115569, "gender": "MALE", "age": "AGE_25_34"}, "stat_time_day": "2021-10-25 00:00:00", "ad_id": 1714125051115569, "gender": "MALE", "age": "AGE_25_34"}, "emitted_at": 1691145528615} -{"stream": "ads_audience_reports_daily", "data": {"metrics": {"spend": "1.770", "ctr": "1.52", "cost_per_conversion": "0.000", "result": "5", "adgroup_name": "Ad Group20211020010107", "cpm": "5.380", "result_rate": "1.52", "real_time_conversion": "0", "placement_type": "Automatic Placement", "impressions": "329", "real_time_cost_per_result": "0.3540", "real_time_result_rate": "1.52", "promotion_type": "Website", "ad_text": "Airbyte - data portabioolity platform - from anywhere to anywhere!", "campaign_id": 1714125042508817, "dpa_target_audience_type": null, "real_time_result": "5", "ad_name": "Optimized Version 4_202110201102_2021-10-20 11:02:00", "real_time_cost_per_conversion": "0.000", "tt_app_id": "0", "mobile_app_id": "0", "real_time_conversion_rate": "0.00", "conversion_rate": "0.00", "conversion": "0", "cpc": "0.350", "campaign_name": "Website Traffic20211020010104", "cost_per_result": "0.3540", "tt_app_name": "0", "clicks": "5", "adgroup_id": 1714125049901106}, "dimensions": {"stat_time_day": "2021-10-21 00:00:00", "ad_id": 1714125051115569, "gender": "MALE", "age": "AGE_45_54"}, "stat_time_day": "2021-10-21 00:00:00", "ad_id": 1714125051115569, "gender": "MALE", "age": "AGE_45_54"}, "emitted_at": 1691145528618} -{"stream": "ads_audience_reports_daily", "data": {"metrics": {"spend": "0.000", "ctr": "0.00", "cost_per_conversion": "0.000", "result": "0", "adgroup_name": "Ad Group20211019111040", "cpm": "0.000", "result_rate": "0.00", "real_time_conversion": "0", "placement_type": "Automatic Placement", "impressions": "56", "real_time_cost_per_result": "0.0000", "real_time_result_rate": "0.00", "promotion_type": "Website", "ad_text": "Open Source ETL", "campaign_id": 1714073078669329, "dpa_target_audience_type": null, "real_time_result": "0", "ad_name": "Optimized Version 1_202110192111_2021-10-19 21:11:39", "real_time_cost_per_conversion": "0.000", "tt_app_id": "0", "mobile_app_id": "0", "real_time_conversion_rate": "0.00", "conversion_rate": "0.00", "conversion": "0", "cpc": "0.000", "campaign_name": "Website Traffic20211019110444", "cost_per_result": "0.0000", "tt_app_name": "0", "clicks": "0", "adgroup_id": 1714073022392322}, "dimensions": {"stat_time_day": "2021-10-19 00:00:00", "ad_id": 1714073085256738, "gender": "MALE", "age": "AGE_25_34"}, "stat_time_day": "2021-10-19 00:00:00", "ad_id": 1714073085256738, "gender": "MALE", "age": "AGE_25_34"}, "emitted_at": 1691145528621} -{"stream": "ad_group_audience_reports_daily", "data": {"dimensions": {"age": "AGE_45_54", "gender": "MALE", "adgroup_id": 1714125049901106, "stat_time_day": "2021-10-27 00:00:00"}, "metrics": {"clicks": "5", "tt_app_name": "0", "campaign_id": 1714125042508817, "result_rate": "1.34", "dpa_target_audience_type": null, "impressions": "373", "mobile_app_id": "0", "conversion_rate": "0.00", "campaign_name": "Website Traffic20211020010104", "real_time_cost_per_conversion": "0.000", "ctr": "1.34", "real_time_conversion": "0", "real_time_cost_per_result": "0.4280", "cpm": "5.740", "cost_per_conversion": "0.000", "real_time_conversion_rate": "0.00", "tt_app_id": "0", "real_time_result_rate": "1.34", "placement_type": "Automatic Placement", "promotion_type": "Website", "result": "5", "real_time_result": "5", "cpc": "0.430", "cost_per_result": "0.4280", "conversion": "0", "spend": "2.140", "adgroup_name": "Ad Group20211020010107"}, "stat_time_day": "2021-10-27 00:00:00", "adgroup_id": 1714125049901106, "gender": "MALE", "age": "AGE_45_54"}, "emitted_at": 1691145591995} -{"stream": "ad_group_audience_reports_daily", "data": {"dimensions": {"age": "AGE_35_44", "gender": "FEMALE", "adgroup_id": 1714125049901106, "stat_time_day": "2021-10-22 00:00:00"}, "metrics": {"clicks": "9", "tt_app_name": "0", "campaign_id": 1714125042508817, "result_rate": "1.41", "dpa_target_audience_type": null, "impressions": "638", "mobile_app_id": "0", "conversion_rate": "0.00", "campaign_name": "Website Traffic20211020010104", "real_time_cost_per_conversion": "0.000", "ctr": "1.41", "real_time_conversion": "0", "real_time_cost_per_result": "0.4789", "cpm": "6.760", "cost_per_conversion": "0.000", "real_time_conversion_rate": "0.00", "tt_app_id": "0", "real_time_result_rate": "1.41", "placement_type": "Automatic Placement", "promotion_type": "Website", "result": "9", "real_time_result": "9", "cpc": "0.480", "cost_per_result": "0.4789", "conversion": "0", "spend": "4.310", "adgroup_name": "Ad Group20211020010107"}, "stat_time_day": "2021-10-22 00:00:00", "adgroup_id": 1714125049901106, "gender": "FEMALE", "age": "AGE_35_44"}, "emitted_at": 1691145591998} -{"stream": "ad_group_audience_reports_daily", "data": {"dimensions": {"age": "AGE_35_44", "gender": "FEMALE", "adgroup_id": 1714073022392322, "stat_time_day": "2021-10-19 00:00:00"}, "metrics": {"clicks": "0", "tt_app_name": "0", "campaign_id": 1714073078669329, "result_rate": "0.00", "dpa_target_audience_type": null, "impressions": "41", "mobile_app_id": "0", "conversion_rate": "0.00", "campaign_name": "Website Traffic20211019110444", "real_time_cost_per_conversion": "0.000", "ctr": "0.00", "real_time_conversion": "0", "real_time_cost_per_result": "0.0000", "cpm": "0.000", "cost_per_conversion": "0.000", "real_time_conversion_rate": "0.00", "tt_app_id": "0", "real_time_result_rate": "0.00", "placement_type": "Automatic Placement", "promotion_type": "Website", "result": "0", "real_time_result": "0", "cpc": "0.000", "cost_per_result": "0.0000", "conversion": "0", "spend": "0.000", "adgroup_name": "Ad Group20211019111040"}, "stat_time_day": "2021-10-19 00:00:00", "adgroup_id": 1714073022392322, "gender": "FEMALE", "age": "AGE_35_44"}, "emitted_at": 1691145592001} -{"stream": "campaigns_audience_reports_by_country_daily", "data": {"dimensions": {"campaign_id": 1714073078669329, "country_code": "US", "stat_time_day": "2021-10-19 00:00:00"}, "metrics": {"clicks": "65", "impressions": "4874", "campaign_name": "Website Traffic20211019110444", "ctr": "1.33", "cpm": "4.100", "cpc": "0.310", "spend": "20.000"}, "stat_time_day": "2021-10-19 00:00:00", "campaign_id": 1714073078669329, "country_code": "US"}, "emitted_at": 1691145665950} -{"stream": "campaigns_audience_reports_by_country_daily", "data": {"dimensions": {"campaign_id": 1714073078669329, "country_code": "US", "stat_time_day": "2021-10-20 00:00:00"}, "metrics": {"clicks": "0", "impressions": "12", "campaign_name": "Website Traffic20211019110444", "ctr": "0.00", "cpm": "0.000", "cpc": "0.000", "spend": "0.000"}, "stat_time_day": "2021-10-20 00:00:00", "campaign_id": 1714073078669329, "country_code": "US"}, "emitted_at": 1691145665953} -{"stream": "campaigns_audience_reports_by_country_daily", "data": {"dimensions": {"campaign_id": 1714073078669329, "country_code": "US", "stat_time_day": "2021-10-22 00:00:00"}, "metrics": {"clicks": "0", "impressions": "0", "campaign_name": "Website Traffic20211019110444", "ctr": "0.00", "cpm": "0.000", "cpc": "0.000", "spend": "0.000"}, "stat_time_day": "2021-10-22 00:00:00", "campaign_id": 1714073078669329, "country_code": "US"}, "emitted_at": 1691145665956} -{"stream": "advertisers_audience_reports_daily", "data": {"dimensions": {"advertiser_id": 7002238017842757633, "age": "AGE_13_17", "gender": "MALE", "stat_time_day": "2021-10-19 00:00:00"}, "metrics": {"clicks": "22", "impressions": "1814", "ctr": "1.21", "cpm": "3.930", "cpc": "0.320", "spend": "7.130"}, "stat_time_day": "2021-10-19 00:00:00", "advertiser_id": 7002238017842757633, "gender": "MALE", "age": "AGE_13_17"}, "emitted_at": 1691145699763} -{"stream": "advertisers_audience_reports_daily", "data": {"dimensions": {"advertiser_id": 7002238017842757633, "age": "AGE_13_17", "gender": "MALE", "stat_time_day": "2021-10-20 00:00:00"}, "metrics": {"clicks": "0", "impressions": "4", "ctr": "0.00", "cpm": "0.000", "cpc": "0.000", "spend": "0.000"}, "stat_time_day": "2021-10-20 00:00:00", "advertiser_id": 7002238017842757633, "gender": "MALE", "age": "AGE_13_17"}, "emitted_at": 1691145699766} -{"stream": "advertisers_audience_reports_daily", "data": {"dimensions": {"advertiser_id": 7002238017842757633, "age": "AGE_13_17", "gender": "FEMALE", "stat_time_day": "2021-10-19 00:00:00"}, "metrics": {"clicks": "29", "impressions": "2146", "ctr": "1.35", "cpm": "3.880", "cpc": "0.290", "spend": "8.320"}, "stat_time_day": "2021-10-19 00:00:00", "advertiser_id": 7002238017842757633, "gender": "FEMALE", "age": "AGE_13_17"}, "emitted_at": 1691145699769} -{"stream": "advertisers_audience_reports_lifetime", "data": {"metrics": {"cpm": "4.580", "impressions": "6897", "cpc": "0.360", "ctr": "1.26", "clicks": "87", "spend": "31.560"}, "dimensions": {"advertiser_id": 7002238017842757633, "age": "AGE_35_44", "gender": "MALE"}, "advertiser_id": 7002238017842757633, "gender": "MALE", "age": "AGE_35_44"}, "emitted_at": 1691145715370} -{"stream": "advertisers_audience_reports_lifetime", "data": {"metrics": {"cpm": "4.280", "impressions": "3450", "cpc": "0.380", "ctr": "1.13", "clicks": "39", "spend": "14.770"}, "dimensions": {"advertiser_id": 7002238017842757633, "age": "AGE_45_54", "gender": "MALE"}, "advertiser_id": 7002238017842757633, "gender": "MALE", "age": "AGE_45_54"}, "emitted_at": 1691145715374} -{"stream": "advertisers_audience_reports_lifetime", "data": {"metrics": {"cpm": "3.920", "impressions": "1818", "cpc": "0.320", "ctr": "1.21", "clicks": "22", "spend": "7.130"}, "dimensions": {"advertiser_id": 7002238017842757633, "age": "AGE_13_17", "gender": "MALE"}, "advertiser_id": 7002238017842757633, "gender": "MALE", "age": "AGE_13_17"}, "emitted_at": 1691145715376} +{"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": "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": "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} diff --git a/airbyte-integrations/connectors/source-tiktok-marketing/integration_tests/expected_records2.jsonl b/airbyte-integrations/connectors/source-tiktok-marketing/integration_tests/expected_records2.jsonl index 78b5b542b7416..70cb51a00652e 100644 --- a/airbyte-integrations/connectors/source-tiktok-marketing/integration_tests/expected_records2.jsonl +++ b/airbyte-integrations/connectors/source-tiktok-marketing/integration_tests/expected_records2.jsonl @@ -1,40 +1,40 @@ -{"stream": "ads_reports", "data": {"metrics": {"video_views_p25": "513", "app_install": "0", "vta_purchase": "0", "value_per_complete_payment": "0.00", "real_time_result": "69", "tt_app_id": 0, "real_time_cost_per_result": "0.290", "result_rate": "1.18", "result": "69", "adgroup_name": "Ad Group20211020010107", "real_time_cost_per_conversion": "0.00", "real_time_result_rate": "1.18", "promotion_type": "Website", "campaign_name": "Website Traffic20211020010104", "ad_text": "Airbyte - data portabioolity platform - from anywhere to anywhere!", "follows": "0", "total_complete_payment_rate": "0.00", "spend": "20.00", "real_time_app_install_cost": "0.00", "video_play_actions": "5173", "cost_per_1000_reached": "4.16", "average_video_play_per_user": "1.64", "video_views_p100": "92", "cost_per_secondary_goal_result": null, "real_time_app_install": "0", "cost_per_result": "0.290", "cpc": "0.29", "tt_app_name": "0", "video_watched_2s": "686", "likes": "36", "placement_type": "Automatic Placement", "shares": "0", "mobile_app_id": "0", "conversion_rate": "0.00", "cta_conversion": "0", "complete_payment": "0", "cta_purchase": "0", "cost_per_conversion": "0.00", "secondary_goal_result_rate": null, "video_views_p50": "214", "clicks": "69", "ctr": "1.18", "impressions": "5830", "secondary_goal_result": null, "dpa_target_audience_type": null, "video_watched_6s": "180", "vta_conversion": "0", "onsite_shopping": "0", "ad_name": "Optimized Version 4_202110201102_2021-10-20 11:02:00", "reach": "4806", "real_time_conversion": "0", "clicks_on_music_disc": "0", "profile_visits": "0", "total_pageview": "0", "real_time_conversion_rate": "0.00", "conversion": "0", "adgroup_id": 1714125049901106, "total_purchase_value": "0.00", "average_video_play": "1.52", "video_views_p75": "140", "cpm": "3.43", "total_onsite_shopping_value": "0.00", "frequency": "1.21", "comments": "0", "campaign_id": 1714125042508817}, "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": 1697462825735} -{"stream": "ads_reports", "data": {"metrics": {"video_views_p25": "295", "app_install": "0", "vta_purchase": "0", "value_per_complete_payment": "0.00", "real_time_result": "53", "tt_app_id": 0, "real_time_cost_per_result": "0.377", "result_rate": "1.41", "result": "53", "adgroup_name": "Ad Group20211020010107", "real_time_cost_per_conversion": "0.00", "real_time_result_rate": "1.41", "promotion_type": "Website", "campaign_name": "Website Traffic20211020010104", "ad_text": "Airbyte - data portabioolity platform - from anywhere to anywhere!", "follows": "0", "total_complete_payment_rate": "0.00", "spend": "20.00", "real_time_app_install_cost": "0.00", "video_play_actions": "3344", "cost_per_1000_reached": "6.38", "average_video_play_per_user": "1.55", "video_views_p100": "52", "cost_per_secondary_goal_result": null, "real_time_app_install": "0", "cost_per_result": "0.377", "cpc": "0.38", "tt_app_name": "0", "video_watched_2s": "408", "likes": "36", "placement_type": "Automatic Placement", "shares": "0", "mobile_app_id": "0", "conversion_rate": "0.00", "cta_conversion": "0", "complete_payment": "0", "cta_purchase": "0", "cost_per_conversion": "0.00", "secondary_goal_result_rate": null, "video_views_p50": "130", "clicks": "53", "ctr": "1.41", "impressions": "3765", "secondary_goal_result": null, "dpa_target_audience_type": null, "video_watched_6s": "106", "vta_conversion": "0", "onsite_shopping": "0", "ad_name": "Optimized Version 4_202110201102_2021-10-20 11:02:00", "reach": "3134", "real_time_conversion": "0", "clicks_on_music_disc": "0", "profile_visits": "0", "total_pageview": "0", "real_time_conversion_rate": "0.00", "conversion": "0", "adgroup_id": 1714125049901106, "total_purchase_value": "0.00", "average_video_play": "1.45", "video_views_p75": "74", "cpm": "5.31", "total_onsite_shopping_value": "0.00", "frequency": "1.20", "comments": "1", "campaign_id": 1714125042508817}, "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": 1697462825748} -{"stream": "ads_reports", "data": {"metrics": {"video_views_p25": "338", "app_install": "0", "vta_purchase": "0", "value_per_complete_payment": "0.00", "real_time_result": "67", "tt_app_id": 0, "real_time_cost_per_result": "0.299", "result_rate": "1.64", "result": "67", "adgroup_name": "Ad Group20211020010107", "real_time_cost_per_conversion": "0.00", "real_time_result_rate": "1.64", "promotion_type": "Website", "campaign_name": "Website Traffic20211020010104", "ad_text": "Airbyte - data portabioolity platform - from anywhere to anywhere!", "follows": "0", "total_complete_payment_rate": "0.00", "spend": "20.00", "real_time_app_install_cost": "0.00", "video_play_actions": "3590", "cost_per_1000_reached": "6.02", "average_video_play_per_user": "1.65", "video_views_p100": "65", "cost_per_secondary_goal_result": null, "real_time_app_install": "0", "cost_per_result": "0.299", "cpc": "0.30", "tt_app_name": "0", "video_watched_2s": "463", "likes": "19", "placement_type": "Automatic Placement", "shares": "0", "mobile_app_id": "0", "conversion_rate": "0.00", "cta_conversion": "0", "complete_payment": "0", "cta_purchase": "0", "cost_per_conversion": "0.00", "secondary_goal_result_rate": null, "video_views_p50": "146", "clicks": "67", "ctr": "1.64", "impressions": "4077", "secondary_goal_result": null, "dpa_target_audience_type": null, "video_watched_6s": "124", "vta_conversion": "0", "onsite_shopping": "0", "ad_name": "Optimized Version 4_202110201102_2021-10-20 11:02:00", "reach": "3322", "real_time_conversion": "0", "clicks_on_music_disc": "0", "profile_visits": "0", "total_pageview": "0", "real_time_conversion_rate": "0.00", "conversion": "0", "adgroup_id": 1714125049901106, "total_purchase_value": "0.00", "average_video_play": "1.53", "video_views_p75": "95", "cpm": "4.91", "total_onsite_shopping_value": "0.00", "frequency": "1.23", "comments": "0", "campaign_id": 1714125042508817}, "dimensions": {"stat_time_day": "2021-10-23 00:00:00", "ad_id": 1714125051115569}, "stat_time_day": "2021-10-23 00:00:00", "ad_id": 1714125051115569}, "emitted_at": 1697462825760} -{"stream": "ads_reports", "data": {"metrics": {"video_views_p25": "297", "app_install": "0", "vta_purchase": "0", "value_per_complete_payment": "0.00", "real_time_result": "46", "tt_app_id": 0, "real_time_cost_per_result": "0.435", "result_rate": "1.23", "result": "46", "adgroup_name": "Ad Group20211020010107", "real_time_cost_per_conversion": "0.00", "real_time_result_rate": "1.23", "promotion_type": "Website", "campaign_name": "Website Traffic20211020010104", "ad_text": "Airbyte - data portabioolity platform - from anywhere to anywhere!", "follows": "0", "total_complete_payment_rate": "0.00", "spend": "20.00", "real_time_app_install_cost": "0.00", "video_play_actions": "3344", "cost_per_1000_reached": "6.41", "average_video_play_per_user": "1.61", "video_views_p100": "71", "cost_per_secondary_goal_result": null, "real_time_app_install": "0", "cost_per_result": "0.435", "cpc": "0.43", "tt_app_name": "0", "video_watched_2s": "413", "likes": "25", "placement_type": "Automatic Placement", "shares": "0", "mobile_app_id": "0", "conversion_rate": "0.00", "cta_conversion": "0", "complete_payment": "0", "cta_purchase": "0", "cost_per_conversion": "0.00", "secondary_goal_result_rate": null, "video_views_p50": "142", "clicks": "46", "ctr": "1.23", "impressions": "3750", "secondary_goal_result": null, "dpa_target_audience_type": null, "video_watched_6s": "112", "vta_conversion": "0", "onsite_shopping": "0", "ad_name": "Optimized Version 4_202110201102_2021-10-20 11:02:00", "reach": "3119", "real_time_conversion": "0", "clicks_on_music_disc": "0", "profile_visits": "0", "total_pageview": "0", "real_time_conversion_rate": "0.00", "conversion": "0", "adgroup_id": 1714125049901106, "total_purchase_value": "0.00", "average_video_play": "1.50", "video_views_p75": "90", "cpm": "5.33", "total_onsite_shopping_value": "0.00", "frequency": "1.20", "comments": "1", "campaign_id": 1714125042508817}, "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": 1697462825763} -{"stream": "ads_reports", "data": {"metrics": {"video_views_p25": "301", "app_install": "0", "vta_purchase": "0", "value_per_complete_payment": "0.00", "real_time_result": "45", "tt_app_id": 0, "real_time_cost_per_result": "0.444", "result_rate": "1.13", "result": "45", "adgroup_name": "Ad Group20211020010107", "real_time_cost_per_conversion": "0.00", "real_time_result_rate": "1.13", "promotion_type": "Website", "campaign_name": "Website Traffic20211020010104", "ad_text": "Airbyte - data portabioolity platform - from anywhere to anywhere!", "follows": "0", "total_complete_payment_rate": "0.00", "spend": "20.00", "real_time_app_install_cost": "0.00", "video_play_actions": "3460", "cost_per_1000_reached": "6.20", "average_video_play_per_user": "1.57", "video_views_p100": "54", "cost_per_secondary_goal_result": null, "real_time_app_install": "0", "cost_per_result": "0.444", "cpc": "0.44", "tt_app_name": "0", "video_watched_2s": "422", "likes": "25", "placement_type": "Automatic Placement", "shares": "0", "mobile_app_id": "0", "conversion_rate": "0.00", "cta_conversion": "0", "complete_payment": "0", "cta_purchase": "0", "cost_per_conversion": "0.00", "secondary_goal_result_rate": null, "video_views_p50": "128", "clicks": "45", "ctr": "1.13", "impressions": "3977", "secondary_goal_result": null, "dpa_target_audience_type": null, "video_watched_6s": "107", "vta_conversion": "0", "onsite_shopping": "0", "ad_name": "Optimized Version 4_202110201102_2021-10-20 11:02:00", "reach": "3227", "real_time_conversion": "0", "clicks_on_music_disc": "0", "profile_visits": "0", "total_pageview": "0", "real_time_conversion_rate": "0.00", "conversion": "0", "adgroup_id": 1714125049901106, "total_purchase_value": "0.00", "average_video_play": "1.46", "video_views_p75": "77", "cpm": "5.03", "total_onsite_shopping_value": "0.00", "frequency": "1.23", "comments": "0", "campaign_id": 1714125042508817}, "dimensions": {"stat_time_day": "2021-10-21 00:00:00", "ad_id": 1714125051115569}, "stat_time_day": "2021-10-21 00:00:00", "ad_id": 1714125051115569}, "emitted_at": 1697462825766} -{"stream":"ad_groups_reports","data":{"dimensions": {"stat_time_day": "2021-10-20 00:00:00", "adgroup_id": 1714125049901106}, "metrics": {"conversion": "0", "real_time_conversion_rate": "0.00", "secondary_goal_result_rate": null, "real_time_cost_per_conversion": "0.00", "placement_type": "Automatic Placement", "real_time_app_install": "0", "video_views_p100": "52", "spend": "20.00", "campaign_id": 1714125042508817, "video_views_p75": "74", "clicks_on_music_disc": "0", "video_play_actions": "3344", "follows": "0", "result_rate": "1.41", "secondary_goal_result": null, "app_install": "0", "cost_per_result": "0.377", "comments": "1", "dpa_target_audience_type": null, "profile_visits": "0", "promotion_type": "Website", "ctr": "1.41", "video_views_p25": "295", "real_time_cost_per_result": "0.377", "tt_app_name": "0", "video_watched_6s": "106", "cpm": "5.31", "video_watched_2s": "408", "result": "53", "real_time_app_install_cost": "0.00", "cost_per_conversion": "0.00", "frequency": "1.20", "real_time_result": "53", "campaign_name": "Website Traffic20211020010104", "conversion_rate": "0.00", "impressions": "3765", "average_video_play": "1.45", "video_views_p50": "130", "adgroup_name": "Ad Group20211020010107", "real_time_conversion": "0", "reach": "3134", "clicks": "53", "real_time_result_rate": "1.41", "cost_per_secondary_goal_result": null, "cpc": "0.38", "mobile_app_id": "0", "average_video_play_per_user": "1.55", "cost_per_1000_reached": "6.38", "likes": "36", "shares": "0", "tt_app_id": 0}, "stat_time_day": "2021-10-20 00:00:00", "adgroup_id": 1714125049901106},"emitted_at":1680792355223} -{"stream":"ad_groups_reports","data":{"dimensions": {"stat_time_day": "2021-10-25 00:00:00", "adgroup_id": 1714125049901106}, "metrics": {"conversion": "0", "real_time_conversion_rate": "0.00", "secondary_goal_result_rate": null, "real_time_cost_per_conversion": "0.00", "placement_type": "Automatic Placement", "real_time_app_install": "0", "video_views_p100": "92", "spend": "20.00", "campaign_id": 1714125042508817, "video_views_p75": "140", "clicks_on_music_disc": "0", "video_play_actions": "5173", "follows": "0", "result_rate": "1.18", "secondary_goal_result": null, "app_install": "0", "cost_per_result": "0.290", "comments": "0", "dpa_target_audience_type": null, "profile_visits": "0", "promotion_type": "Website", "ctr": "1.18", "video_views_p25": "513", "real_time_cost_per_result": "0.290", "tt_app_name": "0", "video_watched_6s": "180", "cpm": "3.43", "video_watched_2s": "686", "result": "69", "real_time_app_install_cost": "0.00", "cost_per_conversion": "0.00", "frequency": "1.21", "real_time_result": "69", "campaign_name": "Website Traffic20211020010104", "conversion_rate": "0.00", "impressions": "5830", "average_video_play": "1.52", "video_views_p50": "214", "adgroup_name": "Ad Group20211020010107", "real_time_conversion": "0", "reach": "4806", "clicks": "69", "real_time_result_rate": "1.18", "cost_per_secondary_goal_result": null, "cpc": "0.29", "mobile_app_id": "0", "average_video_play_per_user": "1.64", "cost_per_1000_reached": "4.16", "likes": "36", "shares": "0", "tt_app_id": 0}, "stat_time_day": "2021-10-25 00:00:00", "adgroup_id": 1714125049901106},"emitted_at":1680792355227} -{"stream":"ad_groups_reports","data":{"dimensions": {"stat_time_day": "2021-10-27 00:00:00", "adgroup_id": 1714125049901106}, "metrics": {"conversion": "0", "real_time_conversion_rate": "0.00", "secondary_goal_result_rate": null, "real_time_cost_per_conversion": "0.00", "placement_type": "Automatic Placement", "real_time_app_install": "0", "video_views_p100": "76", "spend": "20.00", "campaign_id": 1714125042508817, "video_views_p75": "108", "clicks_on_music_disc": "0", "video_play_actions": "4179", "follows": "0", "result_rate": "1.09", "secondary_goal_result": null, "app_install": "0", "cost_per_result": "0.392", "comments": "0", "dpa_target_audience_type": null, "profile_visits": "0", "promotion_type": "Website", "ctr": "1.09", "video_views_p25": "355", "real_time_cost_per_result": "0.392", "tt_app_name": "0", "video_watched_6s": "132", "cpm": "4.26", "video_watched_2s": "493", "result": "51", "real_time_app_install_cost": "0.00", "cost_per_conversion": "0.00", "frequency": "1.23", "real_time_result": "51", "campaign_name": "Website Traffic20211020010104", "conversion_rate": "0.00", "impressions": "4696", "average_video_play": "1.48", "video_views_p50": "164", "adgroup_name": "Ad Group20211020010107", "real_time_conversion": "0", "reach": "3822", "clicks": "51", "real_time_result_rate": "1.09", "cost_per_secondary_goal_result": null, "cpc": "0.39", "mobile_app_id": "0", "average_video_play_per_user": "1.61", "cost_per_1000_reached": "5.23", "likes": "18", "shares": "0", "tt_app_id": 0}, "stat_time_day": "2021-10-27 00:00:00", "adgroup_id": 1714125049901106},"emitted_at":1680792355230} -{"stream":"ad_groups_reports","data":{"dimensions": {"stat_time_day": "2021-10-22 00:00:00", "adgroup_id": 1714125049901106}, "metrics": {"conversion": "0", "real_time_conversion_rate": "0.00", "secondary_goal_result_rate": null, "real_time_cost_per_conversion": "0.00", "placement_type": "Automatic Placement", "real_time_app_install": "0", "video_views_p100": "59", "spend": "20.00", "campaign_id": 1714125042508817, "video_views_p75": "74", "clicks_on_music_disc": "0", "video_play_actions": "3118", "follows": "0", "result_rate": "1.19", "secondary_goal_result": null, "app_install": "0", "cost_per_result": "0.476", "comments": "0", "dpa_target_audience_type": null, "profile_visits": "0", "promotion_type": "Website", "ctr": "1.19", "video_views_p25": "277", "real_time_cost_per_result": "0.476", "tt_app_name": "0", "video_watched_6s": "92", "cpm": "5.68", "video_watched_2s": "390", "result": "42", "real_time_app_install_cost": "0.00", "cost_per_conversion": "0.00", "frequency": "1.21", "real_time_result": "42", "campaign_name": "Website Traffic20211020010104", "conversion_rate": "0.00", "impressions": "3520", "average_video_play": "1.46", "video_views_p50": "112", "adgroup_name": "Ad Group20211020010107", "real_time_conversion": "0", "reach": "2908", "clicks": "42", "real_time_result_rate": "1.19", "cost_per_secondary_goal_result": null, "cpc": "0.48", "mobile_app_id": "0", "average_video_play_per_user": "1.57", "cost_per_1000_reached": "6.88", "likes": "17", "shares": "0", "tt_app_id": 0}, "stat_time_day": "2021-10-22 00:00:00", "adgroup_id": 1714125049901106},"emitted_at":1680792355232} -{"stream":"ad_groups_reports","data":{"dimensions": {"stat_time_day": "2021-10-24 00:00:00", "adgroup_id": 1714125049901106}, "metrics": {"conversion": "0", "real_time_conversion_rate": "0.00", "secondary_goal_result_rate": null, "real_time_cost_per_conversion": "0.00", "placement_type": "Automatic Placement", "real_time_app_install": "0", "video_views_p100": "118", "spend": "20.00", "campaign_id": 1714125042508817, "video_views_p75": "155", "clicks_on_music_disc": "0", "video_play_actions": "6433", "follows": "0", "result_rate": "1.08", "secondary_goal_result": null, "app_install": "0", "cost_per_result": "0.253", "comments": "0", "dpa_target_audience_type": null, "profile_visits": "0", "promotion_type": "Website", "ctr": "1.08", "video_views_p25": "663", "real_time_cost_per_result": "0.253", "tt_app_name": "0", "video_watched_6s": "218", "cpm": "2.74", "video_watched_2s": "917", "result": "79", "real_time_app_install_cost": "0.00", "cost_per_conversion": "0.00", "frequency": "1.21", "real_time_result": "79", "campaign_name": "Website Traffic20211020010104", "conversion_rate": "0.00", "impressions": "7310", "average_video_play": "1.55", "video_views_p50": "278", "adgroup_name": "Ad Group20211020010107", "real_time_conversion": "0", "reach": "6028", "clicks": "79", "real_time_result_rate": "1.08", "cost_per_secondary_goal_result": null, "cpc": "0.25", "mobile_app_id": "0", "average_video_play_per_user": "1.66", "cost_per_1000_reached": "3.32", "likes": "56", "shares": "0", "tt_app_id": 0}, "stat_time_day": "2021-10-24 00:00:00", "adgroup_id": 1714125049901106},"emitted_at":1680792355235} -{"stream":"campaigns_reports","data":{"metrics":{"real_time_app_install":"0","cpm":"2.740","impressions":"7310","cost_per_1000_reached":"3.318","ctr":"1.08","average_video_play_per_user":"1.66","video_views_p100":"118","follows":"0","video_views_p50":"278","clicks_on_music_disc":"0","video_watched_6s":"218","comments":"0","reach":"6028","shares":"0","campaign_name":"Website Traffic20211020010104","video_watched_2s":"917","likes":"56","app_install":"0","average_video_play":"1.55","spend":"20.000","profile_visits":"0","video_play_actions":"6433","real_time_app_install_cost":"0.000","cpc":"0.250","video_views_p25":"663","video_views_p75":"155","clicks":"79","frequency":"1.21"},"dimensions":{"stat_time_day":"2021-10-24 00:00:00","campaign_id":1714125042508817},"stat_time_day":"2021-10-24 00:00:00","campaign_id":1714125042508817},"emitted_at":1680792415636} -{"stream":"campaigns_reports","data":{"metrics":{"real_time_app_install":"0","cpm":"4.260","impressions":"4696","cost_per_1000_reached":"5.233","ctr":"1.09","average_video_play_per_user":"1.61","video_views_p100":"76","follows":"0","video_views_p50":"164","clicks_on_music_disc":"0","video_watched_6s":"132","comments":"0","reach":"3822","shares":"0","campaign_name":"Website Traffic20211020010104","video_watched_2s":"493","likes":"18","app_install":"0","average_video_play":"1.48","spend":"20.000","profile_visits":"0","video_play_actions":"4179","real_time_app_install_cost":"0.000","cpc":"0.390","video_views_p25":"355","video_views_p75":"108","clicks":"51","frequency":"1.23"},"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":1680792415639} -{"stream":"campaigns_reports","data":{"metrics":{"real_time_app_install":"0","cpm":"5.680","impressions":"3520","cost_per_1000_reached":"6.878","ctr":"1.19","average_video_play_per_user":"1.57","video_views_p100":"59","follows":"0","video_views_p50":"112","clicks_on_music_disc":"0","video_watched_6s":"92","comments":"0","reach":"2908","shares":"0","campaign_name":"Website Traffic20211020010104","video_watched_2s":"390","likes":"17","app_install":"0","average_video_play":"1.46","spend":"20.000","profile_visits":"0","video_play_actions":"3118","real_time_app_install_cost":"0.000","cpc":"0.480","video_views_p25":"277","video_views_p75":"74","clicks":"42","frequency":"1.21"},"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":1680792415641} -{"stream":"campaigns_reports","data":{"metrics":{"real_time_app_install":"0","cpm":"3.430","impressions":"5830","cost_per_1000_reached":"4.161","ctr":"1.18","average_video_play_per_user":"1.64","video_views_p100":"92","follows":"0","video_views_p50":"214","clicks_on_music_disc":"0","video_watched_6s":"180","comments":"0","reach":"4806","shares":"0","campaign_name":"Website Traffic20211020010104","video_watched_2s":"686","likes":"36","app_install":"0","average_video_play":"1.52","spend":"20.000","profile_visits":"0","video_play_actions":"5173","real_time_app_install_cost":"0.000","cpc":"0.290","video_views_p25":"513","video_views_p75":"140","clicks":"69","frequency":"1.21"},"dimensions":{"stat_time_day":"2021-10-25 00:00:00","campaign_id":1714125042508817},"stat_time_day":"2021-10-25 00:00:00","campaign_id":1714125042508817},"emitted_at":1680792415644} -{"stream":"campaigns_reports","data":{"metrics":{"real_time_app_install":"0","cpm":"5.310","impressions":"3765","cost_per_1000_reached":"6.382","ctr":"1.41","average_video_play_per_user":"1.55","video_views_p100":"52","follows":"0","video_views_p50":"130","clicks_on_music_disc":"0","video_watched_6s":"106","comments":"1","reach":"3134","shares":"0","campaign_name":"Website Traffic20211020010104","video_watched_2s":"408","likes":"36","app_install":"0","average_video_play":"1.45","spend":"20.000","profile_visits":"0","video_play_actions":"3344","real_time_app_install_cost":"0.000","cpc":"0.380","video_views_p25":"295","video_views_p75":"74","clicks":"53","frequency":"1.20"},"dimensions":{"stat_time_day":"2021-10-20 00:00:00","campaign_id":1714125042508817},"stat_time_day":"2021-10-20 00:00:00","campaign_id":1714125042508817},"emitted_at":1680792415646} -{"stream":"ads_audience_reports","data":{"metrics":{"real_time_result":"12","cost_per_result":"0.3075","conversion_rate":"0.00","adgroup_name":"Ad Group20211020010107","clicks":"12","campaign_id":1714125042508817,"tt_app_name":"0","impressions":"1222","mobile_app_id":"0","real_time_result_rate":"0.98","ad_name":"Optimized Version 4_202110201102_2021-10-20 11:02:00","dpa_target_audience_type":null,"cpm":"3.020","cpc":"0.310","ctr":"0.98","result_rate":"0.98","real_time_conversion":"0","placement_type":"Automatic Placement","cost_per_conversion":"0.000","tt_app_id":"0","real_time_cost_per_result":"0.3075","result":"12","campaign_name":"Website Traffic20211020010104","real_time_cost_per_conversion":"0.000","adgroup_id":1714125049901106,"real_time_conversion_rate":"0.00","conversion":"0","spend":"3.690","promotion_type":"Website","ad_text":"Airbyte - data portabioolity platform - from anywhere to anywhere!"},"dimensions":{"gender":"MALE","stat_time_day":"2021-10-25 00:00:00","ad_id":1714125051115569,"age":"AGE_25_34"},"stat_time_day":"2021-10-25 00:00:00","ad_id":1714125051115569,"gender":"MALE","age":"AGE_25_34"},"emitted_at":1680792474442} -{"stream":"ads_audience_reports","data":{"metrics":{"real_time_result":"5","cost_per_result":"0.3540","conversion_rate":"0.00","adgroup_name":"Ad Group20211020010107","clicks":"5","campaign_id":1714125042508817,"tt_app_name":"0","impressions":"329","mobile_app_id":"0","real_time_result_rate":"1.52","ad_name":"Optimized Version 4_202110201102_2021-10-20 11:02:00","dpa_target_audience_type":null,"cpm":"5.380","cpc":"0.350","ctr":"1.52","result_rate":"1.52","real_time_conversion":"0","placement_type":"Automatic Placement","cost_per_conversion":"0.000","tt_app_id":"0","real_time_cost_per_result":"0.3540","result":"5","campaign_name":"Website Traffic20211020010104","real_time_cost_per_conversion":"0.000","adgroup_id":1714125049901106,"real_time_conversion_rate":"0.00","conversion":"0","spend":"1.770","promotion_type":"Website","ad_text":"Airbyte - data portabioolity platform - from anywhere to anywhere!"},"dimensions":{"gender":"MALE","stat_time_day":"2021-10-21 00:00:00","ad_id":1714125051115569,"age":"AGE_45_54"},"stat_time_day":"2021-10-21 00:00:00","ad_id":1714125051115569,"gender":"MALE","age":"AGE_45_54"},"emitted_at":1680792474445} -{"stream":"ads_audience_reports","data":{"metrics":{"real_time_result":"0","cost_per_result":"0.0000","conversion_rate":"0.00","adgroup_name":"Ad Group20211019111040","clicks":"0","campaign_id":1714073078669329,"tt_app_name":"0","impressions":"56","mobile_app_id":"0","real_time_result_rate":"0.00","ad_name":"Optimized Version 1_202110192111_2021-10-19 21:11:39","dpa_target_audience_type":null,"cpm":"0.000","cpc":"0.000","ctr":"0.00","result_rate":"0.00","real_time_conversion":"0","placement_type":"Automatic Placement","cost_per_conversion":"0.000","tt_app_id":"0","real_time_cost_per_result":"0.0000","result":"0","campaign_name":"Website Traffic20211019110444","real_time_cost_per_conversion":"0.000","adgroup_id":1714073022392322,"real_time_conversion_rate":"0.00","conversion":"0","spend":"0.000","promotion_type":"Website","ad_text":"Open Source ETL"},"dimensions":{"gender":"MALE","stat_time_day":"2021-10-19 00:00:00","ad_id":1714073085256738,"age":"AGE_25_34"},"stat_time_day":"2021-10-19 00:00:00","ad_id":1714073085256738,"gender":"MALE","age":"AGE_25_34"},"emitted_at":1680792474448} -{"stream":"ads_audience_reports","data":{"metrics":{"real_time_result":"10","cost_per_result":"0.2550","conversion_rate":"0.00","adgroup_name":"Ad Group20211020010107","clicks":"10","campaign_id":1714125042508817,"tt_app_name":"0","impressions":"736","mobile_app_id":"0","real_time_result_rate":"1.36","ad_name":"Optimized Version 4_202110201102_2021-10-20 11:02:00","dpa_target_audience_type":null,"cpm":"3.460","cpc":"0.260","ctr":"1.36","result_rate":"1.36","real_time_conversion":"0","placement_type":"Automatic Placement","cost_per_conversion":"0.000","tt_app_id":"0","real_time_cost_per_result":"0.2550","result":"10","campaign_name":"Website Traffic20211020010104","real_time_cost_per_conversion":"0.000","adgroup_id":1714125049901106,"real_time_conversion_rate":"0.00","conversion":"0","spend":"2.550","promotion_type":"Website","ad_text":"Airbyte - data portabioolity platform - from anywhere to anywhere!"},"dimensions":{"gender":"FEMALE","stat_time_day":"2021-10-25 00:00:00","ad_id":1714125051115569,"age":"AGE_45_54"},"stat_time_day":"2021-10-25 00:00:00","ad_id":1714125051115569,"gender":"FEMALE","age":"AGE_45_54"},"emitted_at":1680792474451} -{"stream":"ads_audience_reports","data":{"metrics":{"real_time_result":"9","cost_per_result":"0.4789","conversion_rate":"0.00","adgroup_name":"Ad Group20211020010107","clicks":"9","campaign_id":1714125042508817,"tt_app_name":"0","impressions":"638","mobile_app_id":"0","real_time_result_rate":"1.41","ad_name":"Optimized Version 4_202110201102_2021-10-20 11:02:00","dpa_target_audience_type":null,"cpm":"6.760","cpc":"0.480","ctr":"1.41","result_rate":"1.41","real_time_conversion":"0","placement_type":"Automatic Placement","cost_per_conversion":"0.000","tt_app_id":"0","real_time_cost_per_result":"0.4789","result":"9","campaign_name":"Website Traffic20211020010104","real_time_cost_per_conversion":"0.000","adgroup_id":1714125049901106,"real_time_conversion_rate":"0.00","conversion":"0","spend":"4.310","promotion_type":"Website","ad_text":"Airbyte - data portabioolity platform - from anywhere to anywhere!"},"dimensions":{"gender":"FEMALE","stat_time_day":"2021-10-22 00:00:00","ad_id":1714125051115569,"age":"AGE_35_44"},"stat_time_day":"2021-10-22 00:00:00","ad_id":1714125051115569,"gender":"FEMALE","age":"AGE_35_44"},"emitted_at":1680792474455} -{"stream":"ad_group_audience_reports","data":{"dimensions":{"adgroup_id":1714125049901106,"age":"AGE_45_54","gender":"MALE","stat_time_day":"2021-10-27 00:00:00"},"metrics":{"result_rate":"1.34","promotion_type":"Website","campaign_id":1714125042508817,"cost_per_conversion":"0.000","placement_type":"Automatic Placement","impressions":"373","conversion_rate":"0.00","real_time_cost_per_conversion":"0.000","real_time_conversion":"0","real_time_cost_per_result":"0.4280","conversion":"0","real_time_result_rate":"1.34","tt_app_id":"0","cpc":"0.430","dpa_target_audience_type":null,"clicks":"5","cpm":"5.740","campaign_name":"Website Traffic20211020010104","real_time_conversion_rate":"0.00","ctr":"1.34","spend":"2.140","cost_per_result":"0.4280","adgroup_name":"Ad Group20211020010107","mobile_app_id":"0","tt_app_name":"0","result":"5","real_time_result":"5"},"stat_time_day":"2021-10-27 00:00:00","adgroup_id":1714125049901106,"gender":"MALE","age":"AGE_45_54"},"emitted_at":1680792537240} -{"stream":"ad_group_audience_reports","data":{"dimensions":{"adgroup_id":1714125049901106,"age":"AGE_35_44","gender":"FEMALE","stat_time_day":"2021-10-22 00:00:00"},"metrics":{"result_rate":"1.41","promotion_type":"Website","campaign_id":1714125042508817,"cost_per_conversion":"0.000","placement_type":"Automatic Placement","impressions":"638","conversion_rate":"0.00","real_time_cost_per_conversion":"0.000","real_time_conversion":"0","real_time_cost_per_result":"0.4789","conversion":"0","real_time_result_rate":"1.41","tt_app_id":"0","cpc":"0.480","dpa_target_audience_type":null,"clicks":"9","cpm":"6.760","campaign_name":"Website Traffic20211020010104","real_time_conversion_rate":"0.00","ctr":"1.41","spend":"4.310","cost_per_result":"0.4789","adgroup_name":"Ad Group20211020010107","mobile_app_id":"0","tt_app_name":"0","result":"9","real_time_result":"9"},"stat_time_day":"2021-10-22 00:00:00","adgroup_id":1714125049901106,"gender":"FEMALE","age":"AGE_35_44"},"emitted_at":1680792537243} -{"stream":"ad_group_audience_reports","data":{"dimensions":{"adgroup_id":1714073022392322,"age":"AGE_35_44","gender":"FEMALE","stat_time_day":"2021-10-19 00:00:00"},"metrics":{"result_rate":"0.00","promotion_type":"Website","campaign_id":1714073078669329,"cost_per_conversion":"0.000","placement_type":"Automatic Placement","impressions":"41","conversion_rate":"0.00","real_time_cost_per_conversion":"0.000","real_time_conversion":"0","real_time_cost_per_result":"0.0000","conversion":"0","real_time_result_rate":"0.00","tt_app_id":"0","cpc":"0.000","dpa_target_audience_type":null,"clicks":"0","cpm":"0.000","campaign_name":"Website Traffic20211019110444","real_time_conversion_rate":"0.00","ctr":"0.00","spend":"0.000","cost_per_result":"0.0000","adgroup_name":"Ad Group20211019111040","mobile_app_id":"0","tt_app_name":"0","result":"0","real_time_result":"0"},"stat_time_day":"2021-10-19 00:00:00","adgroup_id":1714073022392322,"gender":"FEMALE","age":"AGE_35_44"},"emitted_at":1680792537246} -{"stream":"ad_group_audience_reports","data":{"dimensions":{"adgroup_id":1714073022392322,"age":"AGE_13_17","gender":"MALE","stat_time_day":"2021-10-20 00:00:00"},"metrics":{"result_rate":"0.00","promotion_type":"Website","campaign_id":1714073078669329,"cost_per_conversion":"0.000","placement_type":"Automatic Placement","impressions":"4","conversion_rate":"0.00","real_time_cost_per_conversion":"0.000","real_time_conversion":"0","real_time_cost_per_result":"0.0000","conversion":"0","real_time_result_rate":"0.00","tt_app_id":"0","cpc":"0.000","dpa_target_audience_type":null,"clicks":"0","cpm":"0.000","campaign_name":"Website Traffic20211019110444","real_time_conversion_rate":"0.00","ctr":"0.00","spend":"0.000","cost_per_result":"0.0000","adgroup_name":"Ad Group20211019111040","mobile_app_id":"0","tt_app_name":"0","result":"0","real_time_result":"0"},"stat_time_day":"2021-10-20 00:00:00","adgroup_id":1714073022392322,"gender":"MALE","age":"AGE_13_17"},"emitted_at":1680792537249} -{"stream":"ad_group_audience_reports","data":{"dimensions":{"adgroup_id":1714073022392322,"age":"AGE_25_34","gender":"MALE","stat_time_day":"2021-10-19 00:00:00"},"metrics":{"result_rate":"0.00","promotion_type":"Website","campaign_id":1714073078669329,"cost_per_conversion":"0.000","placement_type":"Automatic Placement","impressions":"56","conversion_rate":"0.00","real_time_cost_per_conversion":"0.000","real_time_conversion":"0","real_time_cost_per_result":"0.0000","conversion":"0","real_time_result_rate":"0.00","tt_app_id":"0","cpc":"0.000","dpa_target_audience_type":null,"clicks":"0","cpm":"0.000","campaign_name":"Website Traffic20211019110444","real_time_conversion_rate":"0.00","ctr":"0.00","spend":"0.000","cost_per_result":"0.0000","adgroup_name":"Ad Group20211019111040","mobile_app_id":"0","tt_app_name":"0","result":"0","real_time_result":"0"},"stat_time_day":"2021-10-19 00:00:00","adgroup_id":1714073022392322,"gender":"MALE","age":"AGE_25_34"},"emitted_at":1680792537252} -{"stream":"campaigns_audience_reports_by_country","data":{"dimensions":{"country_code":"US","stat_time_day":"2021-10-19 00:00:00","campaign_id":1714073078669329},"metrics":{"cpm":"4.100","campaign_name":"Website Traffic20211019110444","ctr":"1.33","clicks":"65","spend":"20.000","cpc":"0.310","impressions":"4874"},"stat_time_day":"2021-10-19 00:00:00","campaign_id":1714073078669329,"country_code":"US"},"emitted_at":1680792595276} -{"stream":"campaigns_audience_reports_by_country","data":{"dimensions":{"country_code":"US","stat_time_day":"2021-10-20 00:00:00","campaign_id":1714073078669329},"metrics":{"cpm":"0.000","campaign_name":"Website Traffic20211019110444","ctr":"0.00","clicks":"0","spend":"0.000","cpc":"0.000","impressions":"12"},"stat_time_day":"2021-10-20 00:00:00","campaign_id":1714073078669329,"country_code":"US"},"emitted_at":1680792595279} -{"stream":"campaigns_audience_reports_by_country","data":{"dimensions":{"country_code":"US","stat_time_day":"2021-10-22 00:00:00","campaign_id":1714073078669329},"metrics":{"cpm":"0.000","campaign_name":"Website Traffic20211019110444","ctr":"0.00","clicks":"0","spend":"0.000","cpc":"0.000","impressions":"0"},"stat_time_day":"2021-10-22 00:00:00","campaign_id":1714073078669329,"country_code":"US"},"emitted_at":1680792595281} -{"stream":"campaigns_audience_reports_by_country","data":{"dimensions":{"country_code":"US","stat_time_day":"2021-10-20 00:00:00","campaign_id":1714125042508817},"metrics":{"cpm":"5.310","campaign_name":"Website Traffic20211020010104","ctr":"1.41","clicks":"53","spend":"20.000","cpc":"0.380","impressions":"3765"},"stat_time_day":"2021-10-20 00:00:00","campaign_id":1714125042508817,"country_code":"US"},"emitted_at":1680792595284} -{"stream":"campaigns_audience_reports_by_country","data":{"dimensions":{"country_code":"US","stat_time_day":"2021-10-21 00:00:00","campaign_id":1714125042508817},"metrics":{"cpm":"5.030","campaign_name":"Website Traffic20211020010104","ctr":"1.13","clicks":"45","spend":"20.000","cpc":"0.440","impressions":"3977"},"stat_time_day":"2021-10-21 00:00:00","campaign_id":1714125042508817,"country_code":"US"},"emitted_at":1680792595286} -{"stream":"advertisers_reports","data":{"metrics":{"shares":"0","cpm":"4.910","ctr":"1.64","spend":"20.000","video_views_p100":"65","clicks":"67","video_watched_6s":"124","impressions":"4077","likes":"19","video_views_p25":"338","average_video_play":"1.53","app_install":"0","average_video_play_per_user":"1.65","profile_visits":"0","video_views_p50":"146","clicks_on_music_disc":"0","follows":"0","comments":"0","video_watched_2s":"463","real_time_app_install_cost":"0.000","video_views_p75":"95","cash_spend":"20.000","real_time_app_install":"0","video_play_actions":"3590","reach":"3322","cpc":"0.300","voucher_spend":"0.000","frequency":"1.23","cost_per_1000_reached":"6.020"},"dimensions":{"stat_time_day":"2021-10-23 00:00:00","advertiser_id":7002238017842757633},"stat_time_day":"2021-10-23 00:00:00","advertiser_id":7002238017842757633},"emitted_at":1680792695016} -{"stream":"advertisers_reports","data":{"metrics":{"shares":"0","cpm":"5.330","ctr":"1.23","spend":"20.000","video_views_p100":"71","clicks":"46","video_watched_6s":"112","impressions":"3750","likes":"25","video_views_p25":"297","average_video_play":"1.50","app_install":"0","average_video_play_per_user":"1.61","profile_visits":"0","video_views_p50":"142","clicks_on_music_disc":"0","follows":"0","comments":"1","video_watched_2s":"413","real_time_app_install_cost":"0.000","video_views_p75":"90","cash_spend":"20.000","real_time_app_install":"0","video_play_actions":"3344","reach":"3119","cpc":"0.430","voucher_spend":"0.000","frequency":"1.20","cost_per_1000_reached":"6.412"},"dimensions":{"stat_time_day":"2021-10-26 00:00:00","advertiser_id":7002238017842757633},"stat_time_day":"2021-10-26 00:00:00","advertiser_id":7002238017842757633},"emitted_at":1680792695019} -{"stream":"advertisers_reports","data":{"metrics":{"shares":"0","cpm":"5.030","ctr":"1.13","spend":"20.000","video_views_p100":"54","clicks":"45","video_watched_6s":"107","impressions":"3977","likes":"25","video_views_p25":"301","average_video_play":"1.46","app_install":"0","average_video_play_per_user":"1.57","profile_visits":"0","video_views_p50":"128","clicks_on_music_disc":"0","follows":"0","comments":"0","video_watched_2s":"422","real_time_app_install_cost":"0.000","video_views_p75":"77","cash_spend":"20.000","real_time_app_install":"0","video_play_actions":"3460","reach":"3227","cpc":"0.440","voucher_spend":"0.000","frequency":"1.23","cost_per_1000_reached":"6.198"},"dimensions":{"stat_time_day":"2021-10-21 00:00:00","advertiser_id":7002238017842757633},"stat_time_day":"2021-10-21 00:00:00","advertiser_id":7002238017842757633},"emitted_at":1680792695021} -{"stream":"advertisers_reports","data":{"metrics":{"shares":"0","cpm":"3.430","ctr":"1.18","spend":"20.000","video_views_p100":"92","clicks":"69","video_watched_6s":"180","impressions":"5830","likes":"36","video_views_p25":"513","average_video_play":"1.52","app_install":"0","average_video_play_per_user":"1.64","profile_visits":"0","video_views_p50":"214","clicks_on_music_disc":"0","follows":"0","comments":"0","video_watched_2s":"686","real_time_app_install_cost":"0.000","video_views_p75":"140","cash_spend":"20.000","real_time_app_install":"0","video_play_actions":"5173","reach":"4806","cpc":"0.290","voucher_spend":"0.000","frequency":"1.21","cost_per_1000_reached":"4.161"},"dimensions":{"stat_time_day":"2021-10-25 00:00:00","advertiser_id":7002238017842757633},"stat_time_day":"2021-10-25 00:00:00","advertiser_id":7002238017842757633},"emitted_at":1680792695024} -{"stream":"advertisers_reports","data":{"metrics":{"shares":"0","cpm":"5.300","ctr":"1.40","spend":"20.000","video_views_p100":"52","clicks":"53","video_watched_6s":"106","impressions":"3777","likes":"38","video_views_p25":"297","average_video_play":"1.46","app_install":"0","average_video_play_per_user":"1.55","profile_visits":"0","video_views_p50":"130","clicks_on_music_disc":"0","follows":"0","comments":"1","video_watched_2s":"411","real_time_app_install_cost":"0.000","video_views_p75":"74","cash_spend":"20.000","real_time_app_install":"0","video_play_actions":"3355","reach":"3145","cpc":"0.380","voucher_spend":"0.000","frequency":"1.20","cost_per_1000_reached":"6.359"},"dimensions":{"stat_time_day":"2021-10-20 00:00:00","advertiser_id":7002238017842757633},"stat_time_day":"2021-10-20 00:00:00","advertiser_id":7002238017842757633},"emitted_at":1680792695026} -{"stream":"advertisers_audience_reports","data":{"dimensions":{"stat_time_day":"2021-10-19 00:00:00","advertiser_id":7002238017842757633,"gender":"MALE","age":"AGE_13_17"},"metrics":{"ctr":"1.21","cpc":"0.320","clicks":"22","impressions":"1814","cpm":"3.930","spend":"7.130"},"stat_time_day":"2021-10-19 00:00:00","advertiser_id":7002238017842757633,"gender":"MALE","age":"AGE_13_17"},"emitted_at":1680792775318} -{"stream":"advertisers_audience_reports","data":{"dimensions":{"stat_time_day":"2021-10-20 00:00:00","advertiser_id":7002238017842757633,"gender":"MALE","age":"AGE_13_17"},"metrics":{"ctr":"0.00","cpc":"0.000","clicks":"0","impressions":"4","cpm":"0.000","spend":"0.000"},"stat_time_day":"2021-10-20 00:00:00","advertiser_id":7002238017842757633,"gender":"MALE","age":"AGE_13_17"},"emitted_at":1680792775321} -{"stream":"advertisers_audience_reports","data":{"dimensions":{"stat_time_day":"2021-10-19 00:00:00","advertiser_id":7002238017842757633,"gender":"FEMALE","age":"AGE_13_17"},"metrics":{"ctr":"1.35","cpc":"0.290","clicks":"29","impressions":"2146","cpm":"3.880","spend":"8.320"},"stat_time_day":"2021-10-19 00:00:00","advertiser_id":7002238017842757633,"gender":"FEMALE","age":"AGE_13_17"},"emitted_at":1680792775324} -{"stream":"advertisers_audience_reports","data":{"dimensions":{"stat_time_day":"2021-10-20 00:00:00","advertiser_id":7002238017842757633,"gender":"FEMALE","age":"AGE_13_17"},"metrics":{"ctr":"0.00","cpc":"0.000","clicks":"0","impressions":"6","cpm":"0.000","spend":"0.000"},"stat_time_day":"2021-10-20 00:00:00","advertiser_id":7002238017842757633,"gender":"FEMALE","age":"AGE_13_17"},"emitted_at":1680792775326} -{"stream":"advertisers_audience_reports","data":{"dimensions":{"stat_time_day":"2021-10-19 00:00:00","advertiser_id":7002238017842757633,"gender":"MALE","age":"AGE_18_24"},"metrics":{"ctr":"1.79","cpc":"0.380","clicks":"6","impressions":"335","cpm":"6.750","spend":"2.260"},"stat_time_day":"2021-10-19 00:00:00","advertiser_id":7002238017842757633,"gender":"MALE","age":"AGE_18_24"},"emitted_at":1680792775329} +{"stream": "ads_reports", "data": {"metrics": {"comments": "0", "campaign_name": "Website Traffic20211020010104", "conversion_rate": "0.00", "shares": "0", "adgroup_name": "Ad Group20211020010107", "total_complete_payment_rate": "0.00", "average_video_play_per_user": "1.64", "cpm": "3.43", "impressions": "5830", "total_onsite_shopping_value": "0.00", "ctr": "1.18", "onsite_shopping": "0", "conversion": "0", "video_views_p75": "140", "ad_name": "Optimized Version 4_202110201102_2021-10-20 11:02:00", "clicks": "69", "real_time_result_rate": "1.18", "real_time_app_install_cost": "0.00", "video_views_p100": "92", "reach": "4806", "frequency": "1.21", "follows": "0", "clicks_on_music_disc": "0", "real_time_cost_per_result": "0.290", "complete_payment": "0", "cpc": "0.29", "total_purchase_value": "0.00", "cta_purchase": "0", "video_views_p25": "513", "real_time_app_install": "0", "real_time_cost_per_conversion": "0.00", "result_rate": "1.18", "real_time_conversion_rate": "0.00", "adgroup_id": 1714125049901106, "placement_type": "Automatic Placement", "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": "4.16", "dpa_target_audience_type": null, "average_video_play": "1.52", "promotion_type": "Website", "real_time_result": "69", "ad_text": "Airbyte - data portabioolity platform - from anywhere to anywhere!", "cost_per_result": "0.290", "cost_per_secondary_goal_result": null, "video_views_p50": "214", "campaign_id": 1714125042508817, "likes": "36", "video_watched_6s": "180", "total_pageview": "0", "mobile_app_id": "0", "video_watched_2s": "686", "vta_purchase": "0", "video_play_actions": "5173", "profile_visits": "0", "value_per_complete_payment": "0.00", "cta_conversion": "0", "cost_per_conversion": "0.00", "spend": "20.00", "app_install": "0", "result": "69"}, "dimensions": {"ad_id": 1714125051115569, "stat_time_day": "2021-10-25 00:00:00"}, "stat_time_day": "2021-10-25 00:00:00", "ad_id": 1714125051115569}, "emitted_at": 1697524399410} +{"stream": "ads_reports", "data": {"metrics": {"comments": "1", "campaign_name": "Website Traffic20211020010104", "conversion_rate": "0.00", "shares": "0", "adgroup_name": "Ad Group20211020010107", "total_complete_payment_rate": "0.00", "average_video_play_per_user": "1.55", "cpm": "5.31", "impressions": "3765", "total_onsite_shopping_value": "0.00", "ctr": "1.41", "onsite_shopping": "0", "conversion": "0", "video_views_p75": "74", "ad_name": "Optimized Version 4_202110201102_2021-10-20 11:02:00", "clicks": "53", "real_time_result_rate": "1.41", "real_time_app_install_cost": "0.00", "video_views_p100": "52", "reach": "3134", "frequency": "1.20", "follows": "0", "clicks_on_music_disc": "0", "real_time_cost_per_result": "0.377", "complete_payment": "0", "cpc": "0.38", "total_purchase_value": "0.00", "cta_purchase": "0", "video_views_p25": "295", "real_time_app_install": "0", "real_time_cost_per_conversion": "0.00", "result_rate": "1.41", "real_time_conversion_rate": "0.00", "adgroup_id": 1714125049901106, "placement_type": "Automatic Placement", "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": "6.38", "dpa_target_audience_type": null, "average_video_play": "1.45", "promotion_type": "Website", "real_time_result": "53", "ad_text": "Airbyte - data portabioolity platform - from anywhere to anywhere!", "cost_per_result": "0.377", "cost_per_secondary_goal_result": null, "video_views_p50": "130", "campaign_id": 1714125042508817, "likes": "36", "video_watched_6s": "106", "total_pageview": "0", "mobile_app_id": "0", "video_watched_2s": "408", "vta_purchase": "0", "video_play_actions": "3344", "profile_visits": "0", "value_per_complete_payment": "0.00", "cta_conversion": "0", "cost_per_conversion": "0.00", "spend": "20.00", "app_install": "0", "result": "53"}, "dimensions": {"ad_id": 1714125051115569, "stat_time_day": "2021-10-20 00:00:00"}, "stat_time_day": "2021-10-20 00:00:00", "ad_id": 1714125051115569}, "emitted_at": 1697524399421} +{"stream": "ads_reports", "data": {"metrics": {"comments": "0", "campaign_name": "Website Traffic20211019110444", "conversion_rate": "0.00", "shares": "0", "adgroup_name": "Ad Group20211019111040", "total_complete_payment_rate": "0.00", "average_video_play_per_user": "1.85", "cpm": "0.00", "impressions": "12", "total_onsite_shopping_value": "0.00", "ctr": "0.00", "onsite_shopping": "0", "conversion": "0", "video_views_p75": "0", "ad_name": "Optimized Version 1_202110192111_2021-10-19 21:11:39", "clicks": "0", "real_time_result_rate": "0.00", "real_time_app_install_cost": "0.00", "video_views_p100": "0", "reach": "10", "frequency": "1.20", "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": "2", "real_time_app_install": "0", "real_time_cost_per_conversion": "0.00", "result_rate": "0.00", "real_time_conversion_rate": "0.00", "adgroup_id": 1714073022392322, "placement_type": "Automatic Placement", "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": "1.68", "promotion_type": "Website", "real_time_result": "0", "ad_text": "Open Source ETL", "cost_per_result": "0.000", "cost_per_secondary_goal_result": null, "video_views_p50": "0", "campaign_id": 1714073078669329, "likes": "2", "video_watched_6s": "0", "total_pageview": "0", "mobile_app_id": "0", "video_watched_2s": "3", "vta_purchase": "0", "video_play_actions": "11", "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": 1714073085256738, "stat_time_day": "2021-10-20 00:00:00"}, "stat_time_day": "2021-10-20 00:00:00", "ad_id": 1714073085256738}, "emitted_at": 1697524399428} +{"stream": "ads_reports", "data": {"metrics": {"comments": "0", "campaign_name": "Website Traffic20211020010104", "conversion_rate": "0.00", "shares": "0", "adgroup_name": "Ad Group20211020010107", "total_complete_payment_rate": "0.00", "average_video_play_per_user": "1.65", "cpm": "4.91", "impressions": "4077", "total_onsite_shopping_value": "0.00", "ctr": "1.64", "onsite_shopping": "0", "conversion": "0", "video_views_p75": "95", "ad_name": "Optimized Version 4_202110201102_2021-10-20 11:02:00", "clicks": "67", "real_time_result_rate": "1.64", "real_time_app_install_cost": "0.00", "video_views_p100": "65", "reach": "3322", "frequency": "1.23", "follows": "0", "clicks_on_music_disc": "0", "real_time_cost_per_result": "0.299", "complete_payment": "0", "cpc": "0.30", "total_purchase_value": "0.00", "cta_purchase": "0", "video_views_p25": "338", "real_time_app_install": "0", "real_time_cost_per_conversion": "0.00", "result_rate": "1.64", "real_time_conversion_rate": "0.00", "adgroup_id": 1714125049901106, "placement_type": "Automatic Placement", "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": "6.02", "dpa_target_audience_type": null, "average_video_play": "1.53", "promotion_type": "Website", "real_time_result": "67", "ad_text": "Airbyte - data portabioolity platform - from anywhere to anywhere!", "cost_per_result": "0.299", "cost_per_secondary_goal_result": null, "video_views_p50": "146", "campaign_id": 1714125042508817, "likes": "19", "video_watched_6s": "124", "total_pageview": "0", "mobile_app_id": "0", "video_watched_2s": "463", "vta_purchase": "0", "video_play_actions": "3590", "profile_visits": "0", "value_per_complete_payment": "0.00", "cta_conversion": "0", "cost_per_conversion": "0.00", "spend": "20.00", "app_install": "0", "result": "67"}, "dimensions": {"ad_id": 1714125051115569, "stat_time_day": "2021-10-23 00:00:00"}, "stat_time_day": "2021-10-23 00:00:00", "ad_id": 1714125051115569}, "emitted_at": 1697524399433} +{"stream": "ads_reports", "data": {"metrics": {"comments": "1", "campaign_name": "Website Traffic20211020010104", "conversion_rate": "0.00", "shares": "0", "adgroup_name": "Ad Group20211020010107", "total_complete_payment_rate": "0.00", "average_video_play_per_user": "1.61", "cpm": "5.33", "impressions": "3750", "total_onsite_shopping_value": "0.00", "ctr": "1.23", "onsite_shopping": "0", "conversion": "0", "video_views_p75": "90", "ad_name": "Optimized Version 4_202110201102_2021-10-20 11:02:00", "clicks": "46", "real_time_result_rate": "1.23", "real_time_app_install_cost": "0.00", "video_views_p100": "71", "reach": "3119", "frequency": "1.20", "follows": "0", "clicks_on_music_disc": "0", "real_time_cost_per_result": "0.435", "complete_payment": "0", "cpc": "0.43", "total_purchase_value": "0.00", "cta_purchase": "0", "video_views_p25": "297", "real_time_app_install": "0", "real_time_cost_per_conversion": "0.00", "result_rate": "1.23", "real_time_conversion_rate": "0.00", "adgroup_id": 1714125049901106, "placement_type": "Automatic Placement", "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": "6.41", "dpa_target_audience_type": null, "average_video_play": "1.50", "promotion_type": "Website", "real_time_result": "46", "ad_text": "Airbyte - data portabioolity platform - from anywhere to anywhere!", "cost_per_result": "0.435", "cost_per_secondary_goal_result": null, "video_views_p50": "142", "campaign_id": 1714125042508817, "likes": "25", "video_watched_6s": "112", "total_pageview": "0", "mobile_app_id": "0", "video_watched_2s": "413", "vta_purchase": "0", "video_play_actions": "3344", "profile_visits": "0", "value_per_complete_payment": "0.00", "cta_conversion": "0", "cost_per_conversion": "0.00", "spend": "20.00", "app_install": "0", "result": "46"}, "dimensions": {"ad_id": 1714125051115569, "stat_time_day": "2021-10-26 00:00:00"}, "stat_time_day": "2021-10-26 00:00:00", "ad_id": 1714125051115569}, "emitted_at": 1697524399437} +{"stream": "ad_groups_reports", "data": {"dimensions": {"adgroup_id": 1714125049901106, "stat_time_day": "2021-10-20 00:00:00"}, "metrics": {"tt_app_name": "0", "real_time_app_install_cost": "0.00", "video_views_p25": "295", "campaign_id": 1714125042508817, "profile_visits": "0", "frequency": "1.20", "real_time_result": "53", "video_views_p100": "52", "secondary_goal_result_rate": null, "real_time_cost_per_conversion": "0.00", "video_watched_2s": "408", "clicks": "53", "adgroup_name": "Ad Group20211020010107", "cost_per_conversion": "0.00", "video_views_p75": "74", "reach": "3134", "result_rate": "1.41", "cpm": "5.31", "follows": "0", "cost_per_1000_reached": "6.38", "likes": "36", "dpa_target_audience_type": null, "app_install": "0", "secondary_goal_result": null, "clicks_on_music_disc": "0", "video_play_actions": "3344", "average_video_play": "1.45", "cost_per_secondary_goal_result": null, "real_time_conversion_rate": "0.00", "real_time_app_install": "0", "cost_per_result": "0.377", "conversion": "0", "campaign_name": "Website Traffic20211020010104", "real_time_result_rate": "1.41", "conversion_rate": "0.00", "spend": "20.00", "average_video_play_per_user": "1.55", "promotion_type": "Website", "real_time_cost_per_result": "0.377", "video_watched_6s": "106", "cpc": "0.38", "impressions": "3765", "tt_app_id": 0, "mobile_app_id": "0", "comments": "1", "shares": "0", "video_views_p50": "130", "placement_type": "Automatic Placement", "ctr": "1.41", "real_time_conversion": "0", "result": "53"}, "stat_time_day": "2021-10-20 00:00:00", "adgroup_id": 1714125049901106}, "emitted_at": 1697524473948} +{"stream": "ad_groups_reports", "data": {"dimensions": {"adgroup_id": 1714125049901106, "stat_time_day": "2021-10-25 00:00:00"}, "metrics": {"tt_app_name": "0", "real_time_app_install_cost": "0.00", "video_views_p25": "513", "campaign_id": 1714125042508817, "profile_visits": "0", "frequency": "1.21", "real_time_result": "69", "video_views_p100": "92", "secondary_goal_result_rate": null, "real_time_cost_per_conversion": "0.00", "video_watched_2s": "686", "clicks": "69", "adgroup_name": "Ad Group20211020010107", "cost_per_conversion": "0.00", "video_views_p75": "140", "reach": "4806", "result_rate": "1.18", "cpm": "3.43", "follows": "0", "cost_per_1000_reached": "4.16", "likes": "36", "dpa_target_audience_type": null, "app_install": "0", "secondary_goal_result": null, "clicks_on_music_disc": "0", "video_play_actions": "5173", "average_video_play": "1.52", "cost_per_secondary_goal_result": null, "real_time_conversion_rate": "0.00", "real_time_app_install": "0", "cost_per_result": "0.290", "conversion": "0", "campaign_name": "Website Traffic20211020010104", "real_time_result_rate": "1.18", "conversion_rate": "0.00", "spend": "20.00", "average_video_play_per_user": "1.64", "promotion_type": "Website", "real_time_cost_per_result": "0.290", "video_watched_6s": "180", "cpc": "0.29", "impressions": "5830", "tt_app_id": 0, "mobile_app_id": "0", "comments": "0", "shares": "0", "video_views_p50": "214", "placement_type": "Automatic Placement", "ctr": "1.18", "real_time_conversion": "0", "result": "69"}, "stat_time_day": "2021-10-25 00:00:00", "adgroup_id": 1714125049901106}, "emitted_at": 1697524473953} +{"stream": "ad_groups_reports", "data": {"dimensions": {"adgroup_id": 1714125049901106, "stat_time_day": "2021-10-27 00:00:00"}, "metrics": {"tt_app_name": "0", "real_time_app_install_cost": "0.00", "video_views_p25": "355", "campaign_id": 1714125042508817, "profile_visits": "0", "frequency": "1.23", "real_time_result": "51", "video_views_p100": "76", "secondary_goal_result_rate": null, "real_time_cost_per_conversion": "0.00", "video_watched_2s": "493", "clicks": "51", "adgroup_name": "Ad Group20211020010107", "cost_per_conversion": "0.00", "video_views_p75": "108", "reach": "3822", "result_rate": "1.09", "cpm": "4.26", "follows": "0", "cost_per_1000_reached": "5.23", "likes": "18", "dpa_target_audience_type": null, "app_install": "0", "secondary_goal_result": null, "clicks_on_music_disc": "0", "video_play_actions": "4179", "average_video_play": "1.48", "cost_per_secondary_goal_result": null, "real_time_conversion_rate": "0.00", "real_time_app_install": "0", "cost_per_result": "0.392", "conversion": "0", "campaign_name": "Website Traffic20211020010104", "real_time_result_rate": "1.09", "conversion_rate": "0.00", "spend": "20.00", "average_video_play_per_user": "1.61", "promotion_type": "Website", "real_time_cost_per_result": "0.392", "video_watched_6s": "132", "cpc": "0.39", "impressions": "4696", "tt_app_id": 0, "mobile_app_id": "0", "comments": "0", "shares": "0", "video_views_p50": "164", "placement_type": "Automatic Placement", "ctr": "1.09", "real_time_conversion": "0", "result": "51"}, "stat_time_day": "2021-10-27 00:00:00", "adgroup_id": 1714125049901106}, "emitted_at": 1697524473957} +{"stream": "ad_groups_reports", "data": {"dimensions": {"adgroup_id": 1714125049901106, "stat_time_day": "2021-10-22 00:00:00"}, "metrics": {"tt_app_name": "0", "real_time_app_install_cost": "0.00", "video_views_p25": "277", "campaign_id": 1714125042508817, "profile_visits": "0", "frequency": "1.21", "real_time_result": "42", "video_views_p100": "59", "secondary_goal_result_rate": null, "real_time_cost_per_conversion": "0.00", "video_watched_2s": "390", "clicks": "42", "adgroup_name": "Ad Group20211020010107", "cost_per_conversion": "0.00", "video_views_p75": "74", "reach": "2908", "result_rate": "1.19", "cpm": "5.68", "follows": "0", "cost_per_1000_reached": "6.88", "likes": "17", "dpa_target_audience_type": null, "app_install": "0", "secondary_goal_result": null, "clicks_on_music_disc": "0", "video_play_actions": "3118", "average_video_play": "1.46", "cost_per_secondary_goal_result": null, "real_time_conversion_rate": "0.00", "real_time_app_install": "0", "cost_per_result": "0.476", "conversion": "0", "campaign_name": "Website Traffic20211020010104", "real_time_result_rate": "1.19", "conversion_rate": "0.00", "spend": "20.00", "average_video_play_per_user": "1.57", "promotion_type": "Website", "real_time_cost_per_result": "0.476", "video_watched_6s": "92", "cpc": "0.48", "impressions": "3520", "tt_app_id": 0, "mobile_app_id": "0", "comments": "0", "shares": "0", "video_views_p50": "112", "placement_type": "Automatic Placement", "ctr": "1.19", "real_time_conversion": "0", "result": "42"}, "stat_time_day": "2021-10-22 00:00:00", "adgroup_id": 1714125049901106}, "emitted_at": 1697524473961} +{"stream": "ad_groups_reports", "data": {"dimensions": {"adgroup_id": 1714125049901106, "stat_time_day": "2021-10-24 00:00:00"}, "metrics": {"tt_app_name": "0", "real_time_app_install_cost": "0.00", "video_views_p25": "663", "campaign_id": 1714125042508817, "profile_visits": "0", "frequency": "1.21", "real_time_result": "79", "video_views_p100": "118", "secondary_goal_result_rate": null, "real_time_cost_per_conversion": "0.00", "video_watched_2s": "917", "clicks": "79", "adgroup_name": "Ad Group20211020010107", "cost_per_conversion": "0.00", "video_views_p75": "155", "reach": "6028", "result_rate": "1.08", "cpm": "2.74", "follows": "0", "cost_per_1000_reached": "3.32", "likes": "56", "dpa_target_audience_type": null, "app_install": "0", "secondary_goal_result": null, "clicks_on_music_disc": "0", "video_play_actions": "6433", "average_video_play": "1.55", "cost_per_secondary_goal_result": null, "real_time_conversion_rate": "0.00", "real_time_app_install": "0", "cost_per_result": "0.253", "conversion": "0", "campaign_name": "Website Traffic20211020010104", "real_time_result_rate": "1.08", "conversion_rate": "0.00", "spend": "20.00", "average_video_play_per_user": "1.66", "promotion_type": "Website", "real_time_cost_per_result": "0.253", "video_watched_6s": "218", "cpc": "0.25", "impressions": "7310", "tt_app_id": 0, "mobile_app_id": "0", "comments": "0", "shares": "0", "video_views_p50": "278", "placement_type": "Automatic Placement", "ctr": "1.08", "real_time_conversion": "0", "result": "79"}, "stat_time_day": "2021-10-24 00:00:00", "adgroup_id": 1714125049901106}, "emitted_at": 1697524473965} +{"stream": "campaigns_reports", "data": {"metrics": {"follows": "0", "clicks_on_music_disc": "0", "comments": "0", "video_watched_2s": "917", "campaign_name": "Website Traffic20211020010104", "cpc": "0.25", "shares": "0", "cost_per_1000_reached": "3.32", "video_play_actions": "6433", "profile_visits": "0", "average_video_play_per_user": "1.66", "cpm": "2.74", "average_video_play": "1.55", "impressions": "7310", "video_views_p25": "663", "ctr": "1.08", "video_views_p50": "278", "real_time_app_install": "0", "video_views_p75": "155", "clicks": "79", "spend": "20.00", "app_install": "0", "likes": "56", "real_time_app_install_cost": "0.00", "video_watched_6s": "218", "video_views_p100": "118", "reach": "6028", "frequency": "1.21"}, "dimensions": {"campaign_id": 1714125042508817, "stat_time_day": "2021-10-24 00:00:00"}, "stat_time_day": "2021-10-24 00:00:00", "campaign_id": 1714125042508817}, "emitted_at": 1697524543645} +{"stream": "campaigns_reports", "data": {"metrics": {"follows": "0", "clicks_on_music_disc": "0", "comments": "0", "video_watched_2s": "493", "campaign_name": "Website Traffic20211020010104", "cpc": "0.39", "shares": "0", "cost_per_1000_reached": "5.23", "video_play_actions": "4179", "profile_visits": "0", "average_video_play_per_user": "1.61", "cpm": "4.26", "average_video_play": "1.48", "impressions": "4696", "video_views_p25": "355", "ctr": "1.09", "video_views_p50": "164", "real_time_app_install": "0", "video_views_p75": "108", "clicks": "51", "spend": "20.00", "app_install": "0", "likes": "18", "real_time_app_install_cost": "0.00", "video_watched_6s": "132", "video_views_p100": "76", "reach": "3822", "frequency": "1.23"}, "dimensions": {"campaign_id": 1714125042508817, "stat_time_day": "2021-10-27 00:00:00"}, "stat_time_day": "2021-10-27 00:00:00", "campaign_id": 1714125042508817}, "emitted_at": 1697524543651} +{"stream": "campaigns_reports", "data": {"metrics": {"follows": "0", "clicks_on_music_disc": "0", "comments": "0", "video_watched_2s": "390", "campaign_name": "Website Traffic20211020010104", "cpc": "0.48", "shares": "0", "cost_per_1000_reached": "6.88", "video_play_actions": "3118", "profile_visits": "0", "average_video_play_per_user": "1.57", "cpm": "5.68", "average_video_play": "1.46", "impressions": "3520", "video_views_p25": "277", "ctr": "1.19", "video_views_p50": "112", "real_time_app_install": "0", "video_views_p75": "74", "clicks": "42", "spend": "20.00", "app_install": "0", "likes": "17", "real_time_app_install_cost": "0.00", "video_watched_6s": "92", "video_views_p100": "59", "reach": "2908", "frequency": "1.21"}, "dimensions": {"campaign_id": 1714125042508817, "stat_time_day": "2021-10-22 00:00:00"}, "stat_time_day": "2021-10-22 00:00:00", "campaign_id": 1714125042508817}, "emitted_at": 1697524543657} +{"stream": "campaigns_reports", "data": {"metrics": {"follows": "0", "clicks_on_music_disc": "0", "comments": "0", "video_watched_2s": "686", "campaign_name": "Website Traffic20211020010104", "cpc": "0.29", "shares": "0", "cost_per_1000_reached": "4.16", "video_play_actions": "5173", "profile_visits": "0", "average_video_play_per_user": "1.64", "cpm": "3.43", "average_video_play": "1.52", "impressions": "5830", "video_views_p25": "513", "ctr": "1.18", "video_views_p50": "214", "real_time_app_install": "0", "video_views_p75": "140", "clicks": "69", "spend": "20.00", "app_install": "0", "likes": "36", "real_time_app_install_cost": "0.00", "video_watched_6s": "180", "video_views_p100": "92", "reach": "4806", "frequency": "1.21"}, "dimensions": {"campaign_id": 1714125042508817, "stat_time_day": "2021-10-25 00:00:00"}, "stat_time_day": "2021-10-25 00:00:00", "campaign_id": 1714125042508817}, "emitted_at": 1697524543662} +{"stream": "campaigns_reports", "data": {"metrics": {"follows": "0", "clicks_on_music_disc": "0", "comments": "1", "video_watched_2s": "408", "campaign_name": "Website Traffic20211020010104", "cpc": "0.38", "shares": "0", "cost_per_1000_reached": "6.38", "video_play_actions": "3344", "profile_visits": "0", "average_video_play_per_user": "1.55", "cpm": "5.31", "average_video_play": "1.45", "impressions": "3765", "video_views_p25": "295", "ctr": "1.41", "video_views_p50": "130", "real_time_app_install": "0", "video_views_p75": "74", "clicks": "53", "spend": "20.00", "app_install": "0", "likes": "36", "real_time_app_install_cost": "0.00", "video_watched_6s": "106", "video_views_p100": "52", "reach": "3134", "frequency": "1.20"}, "dimensions": {"campaign_id": 1714125042508817, "stat_time_day": "2021-10-20 00:00:00"}, "stat_time_day": "2021-10-20 00:00:00", "campaign_id": 1714125042508817}, "emitted_at": 1697524543665} +{"stream": "ads_audience_reports", "data": {"dimensions": {"ad_id": 1714073085256738, "age": "AGE_18_24", "gender": "MALE", "stat_time_day": "2021-10-20 00:00:00"}, "metrics": {"ad_name": "Optimized Version 1_202110192111_2021-10-19 21:11:39", "adgroup_name": "Ad Group20211019111040", "conversion": "0", "spend": "0.00", "clicks": "0", "result": "0", "promotion_type": "Website", "ad_text": "Open Source ETL", "adgroup_id": 1714073022392322, "real_time_conversion_rate": "0.00", "cost_per_conversion": "0.00", "mobile_app_id": "0", "real_time_result": "0", "tt_app_id": "0", "real_time_conversion": "0", "campaign_id": 1714073078669329, "real_time_result_rate": "0.00", "cost_per_result": "0.000", "conversion_rate": "0.00", "real_time_cost_per_conversion": "0.00", "real_time_cost_per_result": "0.000", "impressions": "1", "dpa_target_audience_type": null, "cpm": "0.00", "campaign_name": "Website Traffic20211019110444", "cpc": "0.00", "tt_app_name": "0", "placement_type": "Automatic Placement", "result_rate": "0.00", "ctr": "0.00"}, "stat_time_day": "2021-10-20 00:00:00", "ad_id": 1714073085256738, "gender": "MALE", "age": "AGE_18_24"}, "emitted_at": 1697524611975} +{"stream": "ads_audience_reports", "data": {"dimensions": {"ad_id": 1714125051115569, "age": "AGE_35_44", "gender": "MALE", "stat_time_day": "2021-10-21 00:00:00"}, "metrics": {"ad_name": "Optimized Version 4_202110201102_2021-10-20 11:02:00", "adgroup_name": "Ad Group20211020010107", "conversion": "0", "spend": "2.28", "clicks": "5", "result": "5", "promotion_type": "Website", "ad_text": "Airbyte - data portabioolity platform - from anywhere to anywhere!", "adgroup_id": 1714125049901106, "real_time_conversion_rate": "0.00", "cost_per_conversion": "0.00", "mobile_app_id": "0", "real_time_result": "5", "tt_app_id": "0", "real_time_conversion": "0", "campaign_id": 1714125042508817, "real_time_result_rate": "1.10", "cost_per_result": "0.456", "conversion_rate": "0.00", "real_time_cost_per_conversion": "0.00", "real_time_cost_per_result": "0.456", "impressions": "454", "dpa_target_audience_type": null, "cpm": "5.02", "campaign_name": "Website Traffic20211020010104", "cpc": "0.46", "tt_app_name": "0", "placement_type": "Automatic Placement", "result_rate": "1.10", "ctr": "1.10"}, "stat_time_day": "2021-10-21 00:00:00", "ad_id": 1714125051115569, "gender": "MALE", "age": "AGE_35_44"}, "emitted_at": 1697524611977} +{"stream": "ads_audience_reports", "data": {"dimensions": {"ad_id": 1714125051115569, "age": "AGE_25_34", "gender": "FEMALE", "stat_time_day": "2021-10-27 00:00:00"}, "metrics": {"ad_name": "Optimized Version 4_202110201102_2021-10-20 11:02:00", "adgroup_name": "Ad Group20211020010107", "conversion": "0", "spend": "6.26", "clicks": "16", "result": "16", "promotion_type": "Website", "ad_text": "Airbyte - data portabioolity platform - from anywhere to anywhere!", "adgroup_id": 1714125049901106, "real_time_conversion_rate": "0.00", "cost_per_conversion": "0.00", "mobile_app_id": "0", "real_time_result": "16", "tt_app_id": "0", "real_time_conversion": "0", "campaign_id": 1714125042508817, "real_time_result_rate": "1.09", "cost_per_result": "0.391", "conversion_rate": "0.00", "real_time_cost_per_conversion": "0.00", "real_time_cost_per_result": "0.391", "impressions": "1462", "dpa_target_audience_type": null, "cpm": "4.28", "campaign_name": "Website Traffic20211020010104", "cpc": "0.39", "tt_app_name": "0", "placement_type": "Automatic Placement", "result_rate": "1.09", "ctr": "1.09"}, "stat_time_day": "2021-10-27 00:00:00", "ad_id": 1714125051115569, "gender": "FEMALE", "age": "AGE_25_34"}, "emitted_at": 1697524611979} +{"stream": "ads_audience_reports", "data": {"dimensions": {"ad_id": 1714125051115569, "age": "AGE_25_34", "gender": "MALE", "stat_time_day": "2021-10-20 00:00:00"}, "metrics": {"ad_name": "Optimized Version 4_202110201102_2021-10-20 11:02:00", "adgroup_name": "Ad Group20211020010107", "conversion": "0", "spend": "4.20", "clicks": "12", "result": "12", "promotion_type": "Website", "ad_text": "Airbyte - data portabioolity platform - from anywhere to anywhere!", "adgroup_id": 1714125049901106, "real_time_conversion_rate": "0.00", "cost_per_conversion": "0.00", "mobile_app_id": "0", "real_time_result": "12", "tt_app_id": "0", "real_time_conversion": "0", "campaign_id": 1714125042508817, "real_time_result_rate": "1.09", "cost_per_result": "0.350", "conversion_rate": "0.00", "real_time_cost_per_conversion": "0.00", "real_time_cost_per_result": "0.350", "impressions": "1099", "dpa_target_audience_type": null, "cpm": "3.82", "campaign_name": "Website Traffic20211020010104", "cpc": "0.35", "tt_app_name": "0", "placement_type": "Automatic Placement", "result_rate": "1.09", "ctr": "1.09"}, "stat_time_day": "2021-10-20 00:00:00", "ad_id": 1714125051115569, "gender": "MALE", "age": "AGE_25_34"}, "emitted_at": 1697524611981} +{"stream": "ads_audience_reports", "data": {"dimensions": {"ad_id": 1714125051115569, "age": "AGE_45_54", "gender": "MALE", "stat_time_day": "2021-10-22 00:00:00"}, "metrics": {"ad_name": "Optimized Version 4_202110201102_2021-10-20 11:02:00", "adgroup_name": "Ad Group20211020010107", "conversion": "0", "spend": "1.92", "clicks": "4", "result": "4", "promotion_type": "Website", "ad_text": "Airbyte - data portabioolity platform - from anywhere to anywhere!", "adgroup_id": 1714125049901106, "real_time_conversion_rate": "0.00", "cost_per_conversion": "0.00", "mobile_app_id": "0", "real_time_result": "4", "tt_app_id": "0", "real_time_conversion": "0", "campaign_id": 1714125042508817, "real_time_result_rate": "1.63", "cost_per_result": "0.480", "conversion_rate": "0.00", "real_time_cost_per_conversion": "0.00", "real_time_cost_per_result": "0.480", "impressions": "245", "dpa_target_audience_type": null, "cpm": "7.84", "campaign_name": "Website Traffic20211020010104", "cpc": "0.48", "tt_app_name": "0", "placement_type": "Automatic Placement", "result_rate": "1.63", "ctr": "1.63"}, "stat_time_day": "2021-10-22 00:00:00", "ad_id": 1714125051115569, "gender": "MALE", "age": "AGE_45_54"}, "emitted_at": 1697524611982} +{"stream": "ad_group_audience_reports", "data": {"dimensions": {"gender": "FEMALE", "stat_time_day": "2021-10-26 00:00:00", "age": "AGE_35_44", "adgroup_id": 1714125049901106}, "metrics": {"real_time_result_rate": "1.91", "real_time_cost_per_conversion": "0.00", "cpm": "7.66", "result": "12", "dpa_target_audience_type": null, "ctr": "1.91", "campaign_id": 1714125042508817, "spend": "4.81", "tt_app_id": "0", "tt_app_name": "0", "real_time_conversion_rate": "0.00", "promotion_type": "Website", "conversion": "0", "adgroup_name": "Ad Group20211020010107", "result_rate": "1.91", "conversion_rate": "0.00", "impressions": "628", "placement_type": "Automatic Placement", "real_time_result": "12", "cpc": "0.40", "campaign_name": "Website Traffic20211020010104", "real_time_conversion": "0", "clicks": "12", "cost_per_conversion": "0.00", "mobile_app_id": "0", "real_time_cost_per_result": "0.401", "cost_per_result": "0.401"}, "stat_time_day": "2021-10-26 00:00:00", "adgroup_id": 1714125049901106, "gender": "FEMALE", "age": "AGE_35_44"}, "emitted_at": 1697524677314} +{"stream": "ad_group_audience_reports", "data": {"dimensions": {"gender": "MALE", "stat_time_day": "2021-10-22 00:00:00", "age": "AGE_45_54", "adgroup_id": 1714125049901106}, "metrics": {"real_time_result_rate": "1.63", "real_time_cost_per_conversion": "0.00", "cpm": "7.84", "result": "4", "dpa_target_audience_type": null, "ctr": "1.63", "campaign_id": 1714125042508817, "spend": "1.92", "tt_app_id": "0", "tt_app_name": "0", "real_time_conversion_rate": "0.00", "promotion_type": "Website", "conversion": "0", "adgroup_name": "Ad Group20211020010107", "result_rate": "1.63", "conversion_rate": "0.00", "impressions": "245", "placement_type": "Automatic Placement", "real_time_result": "4", "cpc": "0.48", "campaign_name": "Website Traffic20211020010104", "real_time_conversion": "0", "clicks": "4", "cost_per_conversion": "0.00", "mobile_app_id": "0", "real_time_cost_per_result": "0.480", "cost_per_result": "0.480"}, "stat_time_day": "2021-10-22 00:00:00", "adgroup_id": 1714125049901106, "gender": "MALE", "age": "AGE_45_54"}, "emitted_at": 1697524677317} +{"stream": "ad_group_audience_reports", "data": {"dimensions": {"gender": "FEMALE", "stat_time_day": "2021-10-23 00:00:00", "age": "AGE_45_54", "adgroup_id": 1714125049901106}, "metrics": {"real_time_result_rate": "1.54", "real_time_cost_per_conversion": "0.00", "cpm": "4.41", "result": "8", "dpa_target_audience_type": null, "ctr": "1.54", "campaign_id": 1714125042508817, "spend": "2.29", "tt_app_id": "0", "tt_app_name": "0", "real_time_conversion_rate": "0.00", "promotion_type": "Website", "conversion": "0", "adgroup_name": "Ad Group20211020010107", "result_rate": "1.54", "conversion_rate": "0.00", "impressions": "519", "placement_type": "Automatic Placement", "real_time_result": "8", "cpc": "0.29", "campaign_name": "Website Traffic20211020010104", "real_time_conversion": "0", "clicks": "8", "cost_per_conversion": "0.00", "mobile_app_id": "0", "real_time_cost_per_result": "0.286", "cost_per_result": "0.286"}, "stat_time_day": "2021-10-23 00:00:00", "adgroup_id": 1714125049901106, "gender": "FEMALE", "age": "AGE_45_54"}, "emitted_at": 1697524677318} +{"stream": "ad_group_audience_reports", "data": {"dimensions": {"gender": "MALE", "stat_time_day": "2021-10-19 00:00:00", "age": "AGE_45_54", "adgroup_id": 1714073022392322}, "metrics": {"real_time_result_rate": "0.00", "real_time_cost_per_conversion": "0.00", "cpm": "0.00", "result": "0", "dpa_target_audience_type": null, "ctr": "0.00", "campaign_id": 1714073078669329, "spend": "0.00", "tt_app_id": "0", "tt_app_name": "0", "real_time_conversion_rate": "0.00", "promotion_type": "Website", "conversion": "0", "adgroup_name": "Ad Group20211019111040", "result_rate": "0.00", "conversion_rate": "0.00", "impressions": "18", "placement_type": "Automatic Placement", "real_time_result": "0", "cpc": "0.00", "campaign_name": "Website Traffic20211019110444", "real_time_conversion": "0", "clicks": "0", "cost_per_conversion": "0.00", "mobile_app_id": "0", "real_time_cost_per_result": "0.000", "cost_per_result": "0.000"}, "stat_time_day": "2021-10-19 00:00:00", "adgroup_id": 1714073022392322, "gender": "MALE", "age": "AGE_45_54"}, "emitted_at": 1697524677320} +{"stream": "ad_group_audience_reports", "data": {"dimensions": {"gender": "FEMALE", "stat_time_day": "2021-10-19 00:00:00", "age": "AGE_13_17", "adgroup_id": 1714073022392322}, "metrics": {"real_time_result_rate": "1.35", "real_time_cost_per_conversion": "0.00", "cpm": "3.88", "result": "29", "dpa_target_audience_type": null, "ctr": "1.35", "campaign_id": 1714073078669329, "spend": "8.32", "tt_app_id": "0", "tt_app_name": "0", "real_time_conversion_rate": "0.00", "promotion_type": "Website", "conversion": "0", "adgroup_name": "Ad Group20211019111040", "result_rate": "1.35", "conversion_rate": "0.00", "impressions": "2146", "placement_type": "Automatic Placement", "real_time_result": "29", "cpc": "0.29", "campaign_name": "Website Traffic20211019110444", "real_time_conversion": "0", "clicks": "29", "cost_per_conversion": "0.00", "mobile_app_id": "0", "real_time_cost_per_result": "0.287", "cost_per_result": "0.287"}, "stat_time_day": "2021-10-19 00:00:00", "adgroup_id": 1714073022392322, "gender": "FEMALE", "age": "AGE_13_17"}, "emitted_at": 1697524677322} +{"stream": "campaigns_audience_reports_by_country", "data": {"metrics": {"ctr": "1.33", "impressions": "4874", "cpm": "4.10", "cpc": "0.31", "clicks": "65", "spend": "20.00", "campaign_name": "Website Traffic20211019110444"}, "dimensions": {"country_code": "US", "campaign_id": 1714073078669329, "stat_time_day": "2021-10-19 00:00:00"}, "stat_time_day": "2021-10-19 00:00:00", "campaign_id": 1714073078669329, "country_code": "US"}, "emitted_at": 1697524737687} +{"stream": "campaigns_audience_reports_by_country", "data": {"metrics": {"ctr": "1.41", "impressions": "3765", "cpm": "5.31", "cpc": "0.38", "clicks": "53", "spend": "20.00", "campaign_name": "Website Traffic20211020010104"}, "dimensions": {"country_code": "US", "campaign_id": 1714125042508817, "stat_time_day": "2021-10-20 00:00:00"}, "stat_time_day": "2021-10-20 00:00:00", "campaign_id": 1714125042508817, "country_code": "US"}, "emitted_at": 1697524737695} +{"stream": "campaigns_audience_reports_by_country", "data": {"metrics": {"ctr": "0.00", "impressions": "12", "cpm": "0.00", "cpc": "0.00", "clicks": "0", "spend": "0.00", "campaign_name": "Website Traffic20211019110444"}, "dimensions": {"country_code": "US", "campaign_id": 1714073078669329, "stat_time_day": "2021-10-20 00:00:00"}, "stat_time_day": "2021-10-20 00:00:00", "campaign_id": 1714073078669329, "country_code": "US"}, "emitted_at": 1697524737704} +{"stream": "campaigns_audience_reports_by_country", "data": {"metrics": {"ctr": "1.13", "impressions": "3977", "cpm": "5.03", "cpc": "0.44", "clicks": "45", "spend": "20.00", "campaign_name": "Website Traffic20211020010104"}, "dimensions": {"country_code": "US", "campaign_id": 1714125042508817, "stat_time_day": "2021-10-21 00:00:00"}, "stat_time_day": "2021-10-21 00:00:00", "campaign_id": 1714125042508817, "country_code": "US"}, "emitted_at": 1697524737709} +{"stream": "campaigns_audience_reports_by_country", "data": {"metrics": {"ctr": "1.19", "impressions": "3520", "cpm": "5.68", "cpc": "0.48", "clicks": "42", "spend": "20.00", "campaign_name": "Website Traffic20211020010104"}, "dimensions": {"country_code": "US", "campaign_id": 1714125042508817, "stat_time_day": "2021-10-22 00:00:00"}, "stat_time_day": "2021-10-22 00:00:00", "campaign_id": 1714125042508817, "country_code": "US"}, "emitted_at": 1697524737713} +{"stream": "advertisers_reports", "data": {"metrics": {"reach": "3322", "impressions": "4077", "profile_visits": "0", "clicks": "67", "average_video_play_per_user": "1.65", "video_play_actions": "3590", "frequency": "1.23", "app_install": "0", "likes": "19", "comments": "0", "clicks_on_music_disc": "0", "video_views_p50": "146", "cpc": "0.30", "ctr": "1.64", "average_video_play": "1.53", "video_views_p100": "65", "shares": "0", "video_watched_6s": "124", "video_views_p25": "338", "spend": "20.00", "cpm": "4.91", "cost_per_1000_reached": "6.02", "real_time_app_install": "0", "voucher_spend": "0.00", "real_time_app_install_cost": "0.00", "video_views_p75": "95", "cash_spend": "20.00", "follows": "0", "video_watched_2s": "463"}, "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": 1697524821277} +{"stream": "advertisers_reports", "data": {"metrics": {"reach": "3119", "impressions": "3750", "profile_visits": "0", "clicks": "46", "average_video_play_per_user": "1.61", "video_play_actions": "3344", "frequency": "1.20", "app_install": "0", "likes": "25", "comments": "1", "clicks_on_music_disc": "0", "video_views_p50": "142", "cpc": "0.43", "ctr": "1.23", "average_video_play": "1.50", "video_views_p100": "71", "shares": "0", "video_watched_6s": "112", "video_views_p25": "297", "spend": "20.00", "cpm": "5.33", "cost_per_1000_reached": "6.41", "real_time_app_install": "0", "voucher_spend": "0.00", "real_time_app_install_cost": "0.00", "video_views_p75": "90", "cash_spend": "20.00", "follows": "0", "video_watched_2s": "413"}, "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": 1697524821279} +{"stream": "advertisers_reports", "data": {"metrics": {"reach": "3227", "impressions": "3977", "profile_visits": "0", "clicks": "45", "average_video_play_per_user": "1.57", "video_play_actions": "3460", "frequency": "1.23", "app_install": "0", "likes": "25", "comments": "0", "clicks_on_music_disc": "0", "video_views_p50": "128", "cpc": "0.44", "ctr": "1.13", "average_video_play": "1.46", "video_views_p100": "54", "shares": "0", "video_watched_6s": "107", "video_views_p25": "301", "spend": "20.00", "cpm": "5.03", "cost_per_1000_reached": "6.20", "real_time_app_install": "0", "voucher_spend": "0.00", "real_time_app_install_cost": "0.00", "video_views_p75": "77", "cash_spend": "20.00", "follows": "0", "video_watched_2s": "422"}, "dimensions": {"advertiser_id": 7002238017842757633, "stat_time_day": "2021-10-21 00:00:00"}, "stat_time_day": "2021-10-21 00:00:00", "advertiser_id": 7002238017842757633}, "emitted_at": 1697524821281} +{"stream": "advertisers_reports", "data": {"metrics": {"reach": "4806", "impressions": "5830", "profile_visits": "0", "clicks": "69", "average_video_play_per_user": "1.64", "video_play_actions": "5173", "frequency": "1.21", "app_install": "0", "likes": "36", "comments": "0", "clicks_on_music_disc": "0", "video_views_p50": "214", "cpc": "0.29", "ctr": "1.18", "average_video_play": "1.52", "video_views_p100": "92", "shares": "0", "video_watched_6s": "180", "video_views_p25": "513", "spend": "20.00", "cpm": "3.43", "cost_per_1000_reached": "4.16", "real_time_app_install": "0", "voucher_spend": "0.00", "real_time_app_install_cost": "0.00", "video_views_p75": "140", "cash_spend": "20.00", "follows": "0", "video_watched_2s": "686"}, "dimensions": {"advertiser_id": 7002238017842757633, "stat_time_day": "2021-10-25 00:00:00"}, "stat_time_day": "2021-10-25 00:00:00", "advertiser_id": 7002238017842757633}, "emitted_at": 1697524821283} +{"stream": "advertisers_reports", "data": {"metrics": {"reach": "3145", "impressions": "3777", "profile_visits": "0", "clicks": "53", "average_video_play_per_user": "1.55", "video_play_actions": "3355", "frequency": "1.20", "app_install": "0", "likes": "38", "comments": "1", "clicks_on_music_disc": "0", "video_views_p50": "130", "cpc": "0.38", "ctr": "1.40", "average_video_play": "1.46", "video_views_p100": "52", "shares": "0", "video_watched_6s": "106", "video_views_p25": "297", "spend": "20.00", "cpm": "5.30", "cost_per_1000_reached": "6.36", "real_time_app_install": "0", "voucher_spend": "0.00", "real_time_app_install_cost": "0.00", "video_views_p75": "74", "cash_spend": "20.00", "follows": "0", "video_watched_2s": "411"}, "dimensions": {"advertiser_id": 7002238017842757633, "stat_time_day": "2021-10-20 00:00:00"}, "stat_time_day": "2021-10-20 00:00:00", "advertiser_id": 7002238017842757633}, "emitted_at": 1697524821285} +{"stream": "advertisers_audience_reports", "data": {"metrics": {"cpc": "0.38", "cpm": "6.75", "impressions": "335", "ctr": "1.79", "clicks": "6", "spend": "2.26"}, "dimensions": {"stat_time_day": "2021-10-19 00:00:00", "age": "AGE_18_24", "advertiser_id": 7002238017842757633, "gender": "MALE"}, "stat_time_day": "2021-10-19 00:00:00", "advertiser_id": 7002238017842757633, "gender": "MALE", "age": "AGE_18_24"}, "emitted_at": 1697524898166} +{"stream": "advertisers_audience_reports", "data": {"metrics": {"cpc": "0.00", "cpm": "0.00", "impressions": "35", "ctr": "2.86", "clicks": "1", "spend": "0.00"}, "dimensions": {"stat_time_day": "2021-10-19 00:00:00", "age": "AGE_35_44", "advertiser_id": 7002238017842757633, "gender": "MALE"}, "stat_time_day": "2021-10-19 00:00:00", "advertiser_id": 7002238017842757633, "gender": "MALE", "age": "AGE_35_44"}, "emitted_at": 1697524898168} +{"stream": "advertisers_audience_reports", "data": {"metrics": {"cpc": "0.29", "cpm": "3.88", "impressions": "2146", "ctr": "1.35", "clicks": "29", "spend": "8.32"}, "dimensions": {"stat_time_day": "2021-10-19 00:00:00", "age": "AGE_13_17", "advertiser_id": 7002238017842757633, "gender": "FEMALE"}, "stat_time_day": "2021-10-19 00:00:00", "advertiser_id": 7002238017842757633, "gender": "FEMALE", "age": "AGE_13_17"}, "emitted_at": 1697524898170} +{"stream": "advertisers_audience_reports", "data": {"metrics": {"cpc": "0.33", "cpm": "7.20", "impressions": "318", "ctr": "2.20", "clicks": "7", "spend": "2.29"}, "dimensions": {"stat_time_day": "2021-10-19 00:00:00", "age": "AGE_18_24", "advertiser_id": 7002238017842757633, "gender": "FEMALE"}, "stat_time_day": "2021-10-19 00:00:00", "advertiser_id": 7002238017842757633, "gender": "FEMALE", "age": "AGE_18_24"}, "emitted_at": 1697524898171} +{"stream": "advertisers_audience_reports", "data": {"metrics": {"cpc": "0.00", "cpm": "0.00", "impressions": "63", "ctr": "0.00", "clicks": "0", "spend": "0.00"}, "dimensions": {"stat_time_day": "2021-10-19 00:00:00", "age": "AGE_25_34", "advertiser_id": 7002238017842757633, "gender": "FEMALE"}, "stat_time_day": "2021-10-19 00:00:00", "advertiser_id": 7002238017842757633, "gender": "FEMALE", "age": "AGE_25_34"}, "emitted_at": 1697524898173}