You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: justoneapi/generated/resources/tiktok_shop.py
+25-2Lines changed: 25 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,7 @@ def search_products_v1(
24
24
25
25
Args:
26
26
keyword: Search keyword.
27
-
region: Target region for product search. Available Values: - `US`: United States - `GB`: United Kingdom - `SG`: Singapore - `MY`: Malaysia - `PH`: Philippines - `TH`: Thailand - `VN`: Vietnam - `ID`: Indonesia
27
+
region: Target region for product search. Available Values: - `US`: United States - `GB`: United Kingdom - `FR`: France - `SG`: Singapore - `MY`: Malaysia - `PH`: Philippines - `TH`: Thailand - `VN`: Vietnam - `ID`: Indonesia
28
28
offset: Search result offset.
29
29
page_token: Pagination token for the next page.
30
30
"""
@@ -51,7 +51,7 @@ def get_product_detail_v1(
51
51
52
52
Args:
53
53
product_id: TikTok Shop Product ID.
54
-
region: Target region for product detail. Available Values: - `US`: United States - `GB`: United Kingdom - `SG`: Singapore - `MY`: Malaysia - `PH`: Philippines - `TH`: Thailand - `VN`: Vietnam - `ID`: Indonesia
54
+
region: Target region for product detail. Available Values: - `US`: United States - `GB`: United Kingdom - `FR`: France - `SG`: Singapore - `MY`: Malaysia - `PH`: Philippines - `TH`: Thailand - `VN`: Vietnam - `ID`: Indonesia
55
55
"""
56
56
returnself._get(
57
57
"/api/tiktok-shop/get-product-detail/v1",
@@ -60,3 +60,26 @@ def get_product_detail_v1(
60
60
"region": region,
61
61
},
62
62
)
63
+
64
+
defget_product_detail_v2(
65
+
self,
66
+
*,
67
+
product_id: str,
68
+
region: str|None="FR",
69
+
) ->ApiResponse[Any]:
70
+
"""
71
+
Product Details
72
+
73
+
Get TikTok Shop product Details data, including title, description, and price, for building product catalogs, price and stock monitoring, and in-depth product analysis.
74
+
75
+
Args:
76
+
product_id: TikTok Shop Product ID.
77
+
region: Target region for product detail. Available Values: - `FR`: France
0 commit comments