1
0
mirror of synced 2025-12-25 02:09:19 -05:00

fix(source-tiktok-marketing): Fix store_ids format to JSON string with dot notation

- Change store_ids from Python list format to JSON string format
- Use dot notation (stream_partition.store_id) instead of bracket notation
- API expects JSON string array like ["12345"], not Python list object

Co-Authored-By: unknown <>
This commit is contained in:
Devin AI
2025-12-16 11:25:48 +00:00
parent 3f05f23670
commit 6968559042

View File

@@ -2267,7 +2267,7 @@ definitions:
requester:
$ref: "#/definitions/requester"
request_parameters:
store_ids: "{{ [stream_partition['store_id']] }}"
store_ids: '["{{ stream_partition.store_id }}"]'
dimensions: '["campaign_id", "stat_time_day"]'
metrics: '["cost", "net_cost", "orders", "cost_per_order", "gross_revenue", "roi", "campaign_name", "operation_status", "bid_type"]'
start_date: "{{ stream_interval['start_time'] }}"