Greetings!
I want to access the data in "bidding_strategy_simulation," but unfortunately I'm unable to do so. I can execute any query built and/or verified with the Google Ads Query Builder for that table, but the results are always empty.
Example:
`SELECT
bidding_strategy_simulation.end_date,
bidding_strategy_simulation.bidding_strategy_id,
bidding_strategy_simulation.modification_method,
bidding_strategy_simulation.start_date,
bidding_strategy_simulation.resource_name,
bidding_strategy_simulation.target_cpa_point_list.points,
bidding_strategy_simulation.target_roas_point_list.points,
bidding_strategy_simulation.type
FROM bidding_strategy_simulation
WHERE
bidding_strategy.type = 'TARGET_ROAS' `
I can access the data from "campaign_simulation" and "bidding_strategy" just fine and retrieve data, but any result I get from "bidding_strategy_simulation" is empty.
I'm using Python to access the API.
Any help is appreciated.