<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Performance Max from Google Ads connector in Integration, Extension &amp; APIs</title>
    <link>https://community.qlik.com/t5/Integration-Extension-APIs/Performance-Max-from-Google-Ads-connector/m-p/2060028#M18408</link>
    <description>&lt;P&gt;Thank you.&lt;/P&gt;
&lt;P&gt;We were able to sort it in a different way since all our Performance Max campaigns did include the word "pmax"&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;SELECT campaign_resourceName, campaign_name, metrics_clicks, metrics_conversionsFromInteractionsRate, metrics_conversions, metrics_costMicros, metrics_costPerConversion, metrics_ctr, metrics_averageCpc, metrics_impressions, segments_date FROM Reports WITH PROPERTIES ( CustomerId='customers/xxxxxxxxx', customerClientId='customers/xxxxxxxxx', gaqlQuery='SELECT metrics.cost_micros, campaign.name, metrics.clicks, metrics.ctr, metrics.impressions, metrics.conversions, metrics.conversions_from_interactions_rate, metrics.average_cpc, metrics.cost_per_conversion, segments.date FROM campaign WHERE segments.date BETWEEN $(vStartDate) AND $(vEndDate) AND campaign.name LIKE ''%-pmax-%''' );&lt;/LI-CODE&gt;</description>
    <pubDate>Thu, 13 Apr 2023 11:44:24 GMT</pubDate>
    <dc:creator>AndreasGu</dc:creator>
    <dc:date>2023-04-13T11:44:24Z</dc:date>
    <item>
      <title>Performance Max from Google Ads connector</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Performance-Max-from-Google-Ads-connector/m-p/2002869#M17542</link>
      <description>&lt;P&gt;We are using the Google Ads connector in Qlik Sense Cloud.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For some reason the Performance Max campaigns are not being collected. Does anyone know if this should be dealt with in the connector or how to sort this?&lt;BR /&gt;&lt;BR /&gt;Sample code:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;SELECT campaign_resourceName,
	campaign_name,
	adGroup_resourceName,
	adGroup_name,
	metrics_clicks,
	metrics_conversionsFromInteractionsRate,
	metrics_conversions,
	metrics_costMicros,
	metrics_costPerConversion,
	metrics_ctr,
	metrics_averageCpc,
	metrics_impressions,
	adGroupAd_resourceName,
	adGroupAd_ad_resourceName,
	segments_date
FROM Reports
WITH PROPERTIES (
CustomerId='customers/XXXXXXXXX',
customerClientId='customers/XXXXXXXXX',
gaqlQuery='SELECT metrics.cost_micros, ad_group_ad.ad.text_ad.headline, campaign.name, metrics.clicks, metrics.ctr, metrics.impressions, metrics.conversions, 
	metrics.conversions_from_interactions_rate, metrics.average_cpc, ad_group.name, metrics.cost_per_conversion, segments.date FROM ad_group_ad WHERE segments.date BETWEEN $(vStartDate) AND $(vEndDate)'
);&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 10 Nov 2022 08:37:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Performance-Max-from-Google-Ads-connector/m-p/2002869#M17542</guid>
      <dc:creator>AndreasGu</dc:creator>
      <dc:date>2022-11-10T08:37:33Z</dc:date>
    </item>
    <item>
      <title>Re: Performance Max from Google Ads connector</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Performance-Max-from-Google-Ads-connector/m-p/2059003#M18393</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;If this is still valid, you will not get performance max campaigns from ad_group_ad endpoint. I managed to solve it by this&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;SELECT 	segments_device,campaign_id,campaign_name,campaign_status,segments_adNetworkType,segments_date, metrics_impressions,metrics_clicks,metrics_costMicros
FROM Reports
WITH PROPERTIES (
          CustomerId='customers/XXXXXXXXXX',
          customerClientId='customers/$(vCustomerID)',
          gaqlQuery= 'SELECT segments.device,campaign.id,campaign.name,campaign.status,segments.ad_network_type,segments.date, metrics.impressions,metrics.clicks,metrics.cost_micros
          FROM campaign
          WHERE  segments.date &amp;gt;= $(vFromDateAW) AND segments.date &amp;lt;= $(vToDateAW)
          AND campaign.advertising_channel_type = PERFORMANCE_MAX');&lt;/LI-CODE&gt;
&lt;P&gt;Hope this helps&lt;BR /&gt;Juraj&lt;/P&gt;</description>
      <pubDate>Tue, 11 Apr 2023 08:44:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Performance-Max-from-Google-Ads-connector/m-p/2059003#M18393</guid>
      <dc:creator>juraj_misina</dc:creator>
      <dc:date>2023-04-11T08:44:12Z</dc:date>
    </item>
    <item>
      <title>Re: Performance Max from Google Ads connector</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Performance-Max-from-Google-Ads-connector/m-p/2060028#M18408</link>
      <description>&lt;P&gt;Thank you.&lt;/P&gt;
&lt;P&gt;We were able to sort it in a different way since all our Performance Max campaigns did include the word "pmax"&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;SELECT campaign_resourceName, campaign_name, metrics_clicks, metrics_conversionsFromInteractionsRate, metrics_conversions, metrics_costMicros, metrics_costPerConversion, metrics_ctr, metrics_averageCpc, metrics_impressions, segments_date FROM Reports WITH PROPERTIES ( CustomerId='customers/xxxxxxxxx', customerClientId='customers/xxxxxxxxx', gaqlQuery='SELECT metrics.cost_micros, campaign.name, metrics.clicks, metrics.ctr, metrics.impressions, metrics.conversions, metrics.conversions_from_interactions_rate, metrics.average_cpc, metrics.cost_per_conversion, segments.date FROM campaign WHERE segments.date BETWEEN $(vStartDate) AND $(vEndDate) AND campaign.name LIKE ''%-pmax-%''' );&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 13 Apr 2023 11:44:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Performance-Max-from-Google-Ads-connector/m-p/2060028#M18408</guid>
      <dc:creator>AndreasGu</dc:creator>
      <dc:date>2023-04-13T11:44:24Z</dc:date>
    </item>
  </channel>
</rss>

