*I am trying to get Video Data but some "Metrics" data I can't get.*
So please help me with that?
$query = "SELECT campaign.id, ad_group.id, ad_group.name,
metrics.impressions, metrics.video_views, metrics.clicks,
metrics.video_view_rate, metrics.average_cpv, metrics.cost_micros,
metrics.video_quartile_p25_rate, metrics.video_quartile_p50_rate,
metrics.video_quartile_p75_rate, metrics.video_quartile_p100_rate,
ad_group.status FROM ad_group WHERE ad_group.id IN (11111222233)";
// Issues a search request by specifying page size.
$response = $googleAdsServiceClient->search($customerId, $query,
['pageSize' => self::PAGE_SIZE]);
// Iterates over all rows in all pages and prints the requested
field values for each row.
foreach ($response->iterateAllElements() as $googleAdsRow) {
/** @var GoogleAdsRow $googleAdsRow */
printf(
"Ad group ID %d in campaign ID %d group Status %d
Impressions %d clicks %d video_view %d video_view_rate %d average_cpv %d
cost_micros %d video_quartile_p25_rate %d video_quartile_p50_rate %d
video_quartile_p75_rate %d video_quartile_p100_rate %d ",
$googleAdsRow->getAdGroup()->getId(),
$googleAdsRow->getCampaign()->getId(),
$googleAdsRow->getAdGroup()->getStatus(),
$googleAdsRow->getMetrics()->getImpressions(),
$googleAdsRow->getMetrics()->getClicks(),
$googleAdsRow->getMetrics()->getVideoViews(),
$googleAdsRow->getMetrics()->getVideoViewRate(),
$googleAdsRow->getMetrics()->getAverageCpv(),
$googleAdsRow->getMetrics()->getCostMicros(),
$googleAdsRow->getMetrics()->getVideoQuartileP25Rate(),
$googleAdsRow->getMetrics()->getVideoQuartileP50Rate(),
$googleAdsRow->getMetrics()->getVideoQuartileP75Rate(),
$googleAdsRow->getMetrics()->getVideoQuartileP100Rate(),
PHP_EOL
);
*OUTPUT IS*
Ad group ID 11111222233 in campaign ID 11111222233 group Status 3
Impressions 10552 clicks 2 video_view 6225 video_view_rate 0 average_cpv
20862 cost_micros 129871561 video_quartile_p25_rate 0
video_quartile_p50_rate 0 video_quartile_p75_rate 0
video_quartile_p100_rate 0
*I need video_view_rate, video_quartile_p25_rate, video_quartile_p50_rate,
video_quartile_p75_rate, video_quartile_p100_rate *
--
--
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
---
You received this message because you are subscribed to the Google Groups
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/adwords-api/86dc316f-1815-4a55-b3a6-316ec48f1fa2n%40googlegroups.com.