From a497a955091482e8260961ea6565a8748b617df9 Mon Sep 17 00:00:00 2001 From: Gary James Date: Sat, 18 Mar 2023 12:33:09 +0000 Subject: [PATCH] fix - Ad account json path --- tap_tiktok/streams.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tap_tiktok/streams.py b/tap_tiktok/streams.py index c7b762e..c4952ad 100644 --- a/tap_tiktok/streams.py +++ b/tap_tiktok/streams.py @@ -18,7 +18,7 @@ class AdAccountsStream(TikTokStream): name = "ad_accounts" path = "/advertiser/info/" primary_keys = ["id"] - records_jsonpath = "$.data[*]" + records_jsonpath = "$.data.list[*]" replication_key = None schema = th.PropertiesList( th.Property("id", th.IntegerType),