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:
@@ -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'] }}"
|
||||
|
||||
Reference in New Issue
Block a user