Dear Google Ads Team,
I am writing to seek your assistance with an issue I am facing while trying to extract PAUSED data from Google Ads using the API call. Specifically, I am working with the "location view" resource and using the following query:
SELECT campaign_criterion.location.geo_target_constant,
campaign.id,
campaign.name,
campaign.status,
campaign_criterion.bid_modifier,
metrics.clicks,
metrics.impressions,
metrics.ctr,
metrics.average_cpc,
metrics.cost_micros,
segments.date
FROM location_view
WHERE campaign.status != 'REMOVED'
AND segments.date BETWEEN '2024-02-10' AND '2024-04-30';
However, I am only able to pull data for "ENABLED" campaigns and not for campaigns with a "PAUSED" status when using this query. If I remove segement date column, I am able to retrieve data for PAUSED campaigns.
Could you please provide guidance on how I can modify my query to pull PAUSED data while maintaining segemnts date in the query? Any insights or solutions you can offer would be greatly appreciated.