Hope this work? 

On Friday, July 16, 2021 at 10:38:48 AM UTC-4 adsapi wrote:

> Hello,
>
> Thanks for sending over more information. However for our team to best 
> investigate, can you please provide us with the complete request and 
> response? We do not need the Python code, just the request and response 
> returned. 
>
>
> Thanks,
> Matt
> Google Ads API Team
>
> [image: Google Logo] 
> Matt 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q2KcQGK:ref
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"AdWords API and Google Ads 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/3b976f90-608a-4ea5-93f4-5e8b414721fbn%40googlegroups.com.
import argparse
import sys
import pandas as pd 
import google.ads.googleads

from google.ads.googleads.client import GoogleAdsClient
from google.ads.googleads.errors import GoogleAdsException

client = 
GoogleAdsClient.load_from_storage("C:/Personal/Consulting/Farmlink/GoogleAdwords/google-ads.yaml")
customer_id = '5490136129'

customer_service = client.get_service("CustomerService")
resource_name = customer_service.customer_path(customer_id)
customer = customer_service.get_customer(resource_name=resource_name)
ga_service = client.get_service("GoogleAdsService")

query = """
    SELECT
  campaign.id, 
  campaign.name, 
  campaign.status, 
  ad_group.campaign, 
  ad_group.name, 
  ad_group.status, 
  ad_group_ad.ad.name, 
  ad_group_ad.ad.final_urls,
  metrics.impressions,
  metrics.clicks,
  metrics.cost_micros,
  metrics.engagements, 
  metrics.interactions,  
  segments.date
FROM ad_group_ad
WHERE segments.date BETWEEN '2021-01-01' AND '2021-07-13'
"""

search_request = client.get_type("SearchGoogleAdsRequest")
search_request.customer_id = customer_id
search_request.query = query


results = ga_service.search(request=search_request)

for row in results:
    
    campaign = row.campaign
    ad_group = row.ad_group
    ad_group_ad  = row.ad_group_ad
    metrics = row.metrics
    segments = row.segments

    df = pd.DataFrame({ 
                       'campaignid': [campaign.id], 
                       'campaignname': [campaign.name],
                       'campaignstatus': [campaign.status],
                       'AdGroup': [ad_group.name],
                       'AdGroupStatus': [ad_group.status],
                       'ad_group_ad.adname': [ad_group_ad.ad.name],             
                          
                       'ad_group_ad.ad_finalurls': [ad_group_ad.ad.final_urls],
                       'impressions': [metrics.impressions],
                       'clicks': [metrics.clicks] ,
                       'cost': [metrics.cost_micros], 
                       'engagements': [metrics.engagements] ,
                       'interactions': [metrics.interactions],                  
   
                       'date': [segments.date]                      
                       }) 

print(results)
  }
  segments {
    date: "2021-04-27"
  }
}
results {
  campaign {
    resource_name: "customers/5490136129/campaigns/12747291986"
    status: PAUSED
    name: "agday-tshirt"
    id: 12747291986
  }
  ad_group {
    resource_name: "customers/5490136129/adGroups/119670450206"
    status: ENABLED
    name: "charles"
    campaign: "customers/5490136129/campaigns/12747291986"
  }
  metrics {
    clicks: 30
    cost_micros: 14805283
    engagements: 0
    impressions: 2857
    interactions: 30
  }
  ad_group_ad {
    resource_name: "customers/5490136129/adGroupAds/119670450206~514402290446"
    ad {
      resource_name: "customers/5490136129/ads/514402290446"
      final_urls: "https://www.farmlinkproject.org/shop";
    }
  }
  segments {
    date: "2021-04-28"
  }
}
results {
  campaign {
    resource_name: "customers/5490136129/campaigns/13005712685"
    status: ENABLED
    name: "The Farmlink Project 1 Year"
    id: 13005712685
  }
  ad_group {
    resource_name: "customers/5490136129/adGroups/120723736214"
    status: ENABLED
    name: "1 Year"
    campaign: "customers/5490136129/campaigns/13005712685"
  }
  metrics {
    clicks: 72
    cost_micros: 57321983
    engagements: 2035
    impressions: 17187
    interactions: 2035
  }
  ad_group_ad {
    resource_name: "customers/5490136129/adGroupAds/120723736214~522037559651"
    ad {
      resource_name: "customers/5490136129/ads/522037559651"
      final_urls: "http://www.farmlinkproject.org";
      name: "Ad #1"
    }
  }
  segments {
    date: "2021-05-19"
  }
}
results {
  campaign {
    resource_name: "customers/5490136129/campaigns/13005712685"
    status: ENABLED
    name: "The Farmlink Project 1 Year"
    id: 13005712685
  }
  ad_group {
    resource_name: "customers/5490136129/adGroups/120723736214"
    status: ENABLED
    name: "1 Year"
    campaign: "customers/5490136129/campaigns/13005712685"
  }
  metrics {
    clicks: 266
    cost_micros: 121547780
    engagements: 5297
    impressions: 112284
    interactions: 5336
  }
  ad_group_ad {
    resource_name: "customers/5490136129/adGroupAds/120723736214~522037559651"
    ad {
      resource_name: "customers/5490136129/ads/522037559651"
      final_urls: "http://www.farmlinkproject.org";
      name: "Ad #1"
    }
  }
  segments {
    date: "2021-05-20"
  }
}
results {
  campaign {
    resource_name: "customers/5490136129/campaigns/13005712685"
    status: ENABLED
    name: "The Farmlink Project 1 Year"
    id: 13005712685
  }
  ad_group {
    resource_name: "customers/5490136129/adGroups/120723736214"
    status: ENABLED
    name: "1 Year"
    campaign: "customers/5490136129/campaigns/13005712685"
  }
  metrics {
    clicks: 498
    cost_micros: 118429715
    engagements: 4719
    impressions: 24622
    interactions: 4760
  }
  ad_group_ad {
    resource_name: "customers/5490136129/adGroupAds/120723736214~522037559651"
    ad {
      resource_name: "customers/5490136129/ads/522037559651"
      final_urls: "http://www.farmlinkproject.org";
      name: "Ad #1"
    }
  }
  segments {
    date: "2021-05-21"
  }
}
results {
  campaign {
    resource_name: "customers/5490136129/campaigns/13005712685"
    status: ENABLED
    name: "The Farmlink Project 1 Year"
    id: 13005712685
  }
  ad_group {
    resource_name: "customers/5490136129/adGroups/120723736214"
    status: ENABLED
    name: "1 Year"
    campaign: "customers/5490136129/campaigns/13005712685"
  }
  metrics {
    clicks: 551
    cost_micros: 118300666
    engagements: 5638
    impressions: 20761
    interactions: 5687
  }
  ad_group_ad {
    resource_name: "customers/5490136129/adGroupAds/120723736214~522037559651"
    ad {
      resource_name: "customers/5490136129/ads/522037559651"
      final_urls: "http://www.farmlinkproject.org";
      name: "Ad #1"
    }
  }
  segments {
    date: "2021-05-22"
  }
}
results {
  campaign {
    resource_name: "customers/5490136129/campaigns/13005712685"
    status: ENABLED
    name: "The Farmlink Project 1 Year"
    id: 13005712685
  }
  ad_group {
    resource_name: "customers/5490136129/adGroups/120723736214"
    status: ENABLED
    name: "1 Year"
    campaign: "customers/5490136129/campaigns/13005712685"
  }
  metrics {
    clicks: 744
    cost_micros: 114405438
    engagements: 14862
    impressions: 29502
    interactions: 14864
  }
  ad_group_ad {
    resource_name: "customers/5490136129/adGroupAds/120723736214~522037559651"
    ad {
      resource_name: "customers/5490136129/ads/522037559651"
      final_urls: "http://www.farmlinkproject.org";
      name: "Ad #1"
    }
  }
  segments {
    date: "2021-05-23"
  }
}
results {
  campaign {
    resource_name: "customers/5490136129/campaigns/13005712685"
    status: ENABLED
    name: "The Farmlink Project 1 Year"
    id: 13005712685
  }
  ad_group {
    resource_name: "customers/5490136129/adGroups/120723736214"
    status: ENABLED
    name: "1 Year"
    campaign: "customers/5490136129/campaigns/13005712685"
  }
  metrics {
    clicks: 347
    cost_micros: 114530405
    engagements: 18918
    impressions: 27519
    interactions: 18920
  }
  ad_group_ad {
    resource_name: "customers/5490136129/adGroupAds/120723736214~522037559651"
    ad {
      resource_name: "customers/5490136129/ads/522037559651"
      final_urls: "http://www.farmlinkproject.org";
      name: "Ad #1"
    }
  }
  segments {
    date: "2021-05-24"
  }
}
results {
  campaign {
    resource_name: "customers/5490136129/campaigns/13005712685"
    status: ENABLED
    name: "The Farmlink Project 1 Year"
    id: 13005712685
  }
  ad_group {
    resource_name: "customers/5490136129/adGroups/120723736214"
    status: ENABLED
    name: "1 Year"
    campaign: "customers/5490136129/campaigns/13005712685"
  }
  metrics {
    clicks: 82
    cost_micros: 117747075
    engagements: 26470
    impressions: 34456
    interactions: 26534
  }
  ad_group_ad {
    resource_name: "customers/5490136129/adGroupAds/120723736214~522037559651"
    ad {
      resource_name: "customers/5490136129/ads/522037559651"
      final_urls: "http://www.farmlinkproject.org";
      name: "Ad #1"
    }
  }
  segments {
    date: "2021-05-25"
  }
}
results {
  campaign {
    resource_name: "customers/5490136129/campaigns/13005712685"
    status: ENABLED
    name: "The Farmlink Project 1 Year"
    id: 13005712685
  }
  ad_group {
    resource_name: "customers/5490136129/adGroups/120723736214"
    status: ENABLED
    name: "1 Year"
    campaign: "customers/5490136129/campaigns/13005712685"
  }
  metrics {
    clicks: 43
    cost_micros: 119853456
    engagements: 17677
    impressions: 28179
    interactions: 17699
  }
  ad_group_ad {
    resource_name: "customers/5490136129/adGroupAds/120723736214~522037559651"
    ad {
      resource_name: "customers/5490136129/ads/522037559651"
      final_urls: "http://www.farmlinkproject.org";
      name: "Ad #1"
    }
  }
  segments {
    date: "2021-05-26"
  }
}
results {
  campaign {
    resource_name: "customers/5490136129/campaigns/13005712685"
    status: ENABLED
    name: "The Farmlink Project 1 Year"
    id: 13005712685
  }
  ad_group {
    resource_name: "customers/5490136129/adGroups/120723736214"
    status: ENABLED
    name: "1 Year"
    campaign: "customers/5490136129/campaigns/13005712685"
  }
  metrics {
    clicks: 59
    cost_micros: 122729883
    engagements: 2611
    impressions: 24496
    interactions: 2631
  }
  ad_group_ad {
    resource_name: "customers/5490136129/adGroupAds/120723736214~522037559651"
    ad {
      resource_name: "customers/5490136129/ads/522037559651"
      final_urls: "http://www.farmlinkproject.org";
      name: "Ad #1"
    }
  }
  segments {
    date: "2021-05-27"
  }
}
results {
  campaign {
    resource_name: "customers/5490136129/campaigns/13005712685"
    status: ENABLED
    name: "The Farmlink Project 1 Year"
    id: 13005712685
  }
  ad_group {
    resource_name: "customers/5490136129/adGroups/120723736214"
    status: ENABLED
    name: "1 Year"
    campaign: "customers/5490136129/campaigns/13005712685"
  }
  metrics {
    clicks: 29
    cost_micros: 123467350
    engagements: 926
    impressions: 32978
    interactions: 930
  }
  ad_group_ad {
    resource_name: "customers/5490136129/adGroupAds/120723736214~522037559651"
    ad {
      resource_name: "customers/5490136129/ads/522037559651"
      final_urls: "http://www.farmlinkproject.org";
      name: "Ad #1"
    }
  }
  segments {
    date: "2021-05-28"
  }
}
results {
  campaign {
    resource_name: "customers/5490136129/campaigns/13005712685"
    status: ENABLED
    name: "The Farmlink Project 1 Year"
    id: 13005712685
  }
  ad_group {
    resource_name: "customers/5490136129/adGroups/120723736214"
    status: ENABLED
    name: "1 Year"
    campaign: "customers/5490136129/campaigns/13005712685"
  }
  metrics {
    clicks: 49
    cost_micros: 123558050
    engagements: 1096
    impressions: 29928
    interactions: 1097
  }
  ad_group_ad {
    resource_name: "customers/5490136129/adGroupAds/120723736214~522037559651"
    ad {
      resource_name: "customers/5490136129/ads/522037559651"
      final_urls: "http://www.farmlinkproject.org";
      name: "Ad #1"
    }
  }
  segments {
    date: "2021-05-29"
  }
}
results {
  campaign {
    resource_name: "customers/5490136129/campaigns/13005712685"
    status: ENABLED
    name: "The Farmlink Project 1 Year"
    id: 13005712685
  }
  ad_group {
    resource_name: "customers/5490136129/adGroups/120723736214"
    status: ENABLED
    name: "1 Year"
    campaign: "customers/5490136129/campaigns/13005712685"
  }
  metrics {
    clicks: 67
    cost_micros: 123713409
    engagements: 2996
    impressions: 19788
    interactions: 2996
  }
  ad_group_ad {
    resource_name: "customers/5490136129/adGroupAds/120723736214~522037559651"
    ad {
      resource_name: "customers/5490136129/ads/522037559651"
      final_urls: "http://www.farmlinkproject.org";
      name: "Ad #1"
    }
  }
  segments {
    date: "2021-05-30"
  }
}
results {
  campaign {
    resource_name: "customers/5490136129/campaigns/13005712685"
    status: ENABLED
    name: "The Farmlink Project 1 Year"
    id: 13005712685
  }
  ad_group {
    resource_name: "customers/5490136129/adGroups/120723736214"
    status: ENABLED
    name: "1 Year"
    campaign: "customers/5490136129/campaigns/13005712685"
  }
  metrics {
    clicks: 55
    cost_micros: 104929645
    engagements: 2500
    impressions: 7004
    interactions: 2500
  }
  ad_group_ad {
    resource_name: "customers/5490136129/adGroupAds/120723736214~522037559651"
    ad {
      resource_name: "customers/5490136129/ads/522037559651"
      final_urls: "http://www.farmlinkproject.org";
      name: "Ad #1"
    }
  }
  segments {
    date: "2021-05-31"
  }
}
results {
  campaign {
    resource_name: "customers/5490136129/campaigns/13005712685"
    status: ENABLED
    name: "The Farmlink Project 1 Year"
    id: 13005712685
  }
  ad_group {
    resource_name: "customers/5490136129/adGroups/120723736214"
    status: ENABLED
    name: "1 Year"
    campaign: "customers/5490136129/campaigns/13005712685"
  }
  metrics {
    clicks: 11
    cost_micros: 49890346
    engagements: 769
    impressions: 1927
    interactions: 769
  }
  ad_group_ad {
    resource_name: "customers/5490136129/adGroupAds/120723736214~522037559651"
    ad {
      resource_name: "customers/5490136129/ads/522037559651"
      final_urls: "http://www.farmlinkproject.org";
      name: "Ad #1"
    }
  }
  segments {
    date: "2021-06-01"
  }
}
results {
  campaign {
    resource_name: "customers/5490136129/campaigns/13005712685"
    status: ENABLED
    name: "The Farmlink Project 1 Year"
    id: 13005712685
  }
  ad_group {
    resource_name: "customers/5490136129/adGroups/120723736214"
    status: ENABLED
    name: "1 Year"
    campaign: "customers/5490136129/campaigns/13005712685"
  }
  metrics {
    clicks: 14
    cost_micros: 49840349
    engagements: 767
    impressions: 1743
    interactions: 767
  }
  ad_group_ad {
    resource_name: "customers/5490136129/adGroupAds/120723736214~522037559651"
    ad {
      resource_name: "customers/5490136129/ads/522037559651"
      final_urls: "http://www.farmlinkproject.org";
      name: "Ad #1"
    }
  }
  segments {
    date: "2021-06-02"
  }
}
results {
  campaign {
    resource_name: "customers/5490136129/campaigns/13005712685"
    status: ENABLED
    name: "The Farmlink Project 1 Year"
    id: 13005712685
  }
  ad_group {
    resource_name: "customers/5490136129/adGroups/120723736214"
    status: ENABLED
    name: "1 Year"
    campaign: "customers/5490136129/campaigns/13005712685"
  }
  metrics {
    clicks: 10
    cost_micros: 50138991
    engagements: 674
    impressions: 1616
    interactions: 674
  }
  ad_group_ad {
    resource_name: "customers/5490136129/adGroupAds/120723736214~522037559651"
    ad {
      resource_name: "customers/5490136129/ads/522037559651"
      final_urls: "http://www.farmlinkproject.org";
      name: "Ad #1"
    }
  }
  segments {
    date: "2021-06-03"
  }
}
results {
  campaign {
    resource_name: "customers/5490136129/campaigns/13005712685"
    status: ENABLED
    name: "The Farmlink Project 1 Year"
    id: 13005712685
  }
  ad_group {
    resource_name: "customers/5490136129/adGroups/120723736214"
    status: ENABLED
    name: "1 Year"
    campaign: "customers/5490136129/campaigns/13005712685"
  }
  metrics {
    clicks: 24
    cost_micros: 50504312
    engagements: 729
    impressions: 1632
    interactions: 729
  }
  ad_group_ad {
    resource_name: "customers/5490136129/adGroupAds/120723736214~522037559651"
    ad {
      resource_name: "customers/5490136129/ads/522037559651"
      final_urls: "http://www.farmlinkproject.org";
      name: "Ad #1"
    }
  }
  segments {
    date: "2021-06-04"
  }
}
results {
  campaign {
    resource_name: "customers/5490136129/campaigns/13005712685"
    status: ENABLED
    name: "The Farmlink Project 1 Year"
    id: 13005712685
  }
  ad_group {
    resource_name: "customers/5490136129/adGroups/120723736214"
    status: ENABLED
    name: "1 Year"
    campaign: "customers/5490136129/campaigns/13005712685"
  }
  metrics {
    clicks: 18
    cost_micros: 50055693
    engagements: 830
    impressions: 1913
    interactions: 830
  }
  ad_group_ad {
    resource_name: "customers/5490136129/adGroupAds/120723736214~522037559651"
    ad {
      resource_name: "customers/5490136129/ads/522037559651"
      final_urls: "http://www.farmlinkproject.org";
      name: "Ad #1"
    }
  }
  segments {
    date: "2021-06-05"
  }
}
results {
  campaign {
    resource_name: "customers/5490136129/campaigns/13005712685"
    status: ENABLED
    name: "The Farmlink Project 1 Year"
    id: 13005712685
  }
  ad_group {
    resource_name: "customers/5490136129/adGroups/120723736214"
    status: ENABLED
    name: "1 Year"
    campaign: "customers/5490136129/campaigns/13005712685"
  }
  metrics {
    clicks: 19
    cost_micros: 49276727
    engagements: 832
    impressions: 2111
    interactions: 832
  }
  ad_group_ad {
    resource_name: "customers/5490136129/adGroupAds/120723736214~522037559651"
    ad {
      resource_name: "customers/5490136129/ads/522037559651"
      final_urls: "http://www.farmlinkproject.org";
      name: "Ad #1"
    }
  }
  segments {
    date: "2021-06-06"
  }
}
results {
  campaign {
    resource_name: "customers/5490136129/campaigns/13005712685"
    status: ENABLED
    name: "The Farmlink Project 1 Year"
    id: 13005712685
  }
  ad_group {
    resource_name: "customers/5490136129/adGroups/120723736214"
    status: ENABLED
    name: "1 Year"
    campaign: "customers/5490136129/campaigns/13005712685"
  }
  metrics {
    clicks: 108
    cost_micros: 405321257
    engagements: 8858
    impressions: 51791
    interactions: 8858
  }
  ad_group_ad {
    resource_name: "customers/5490136129/adGroupAds/120723736214~522037559651"
    ad {
      resource_name: "customers/5490136129/ads/522037559651"
      final_urls: "http://www.farmlinkproject.org";
      name: "Ad #1"
    }
  }
  segments {
    date: "2021-06-28"
  }
}
results {
  campaign {
    resource_name: "customers/5490136129/campaigns/13005712685"
    status: ENABLED
    name: "The Farmlink Project 1 Year"
    id: 13005712685
  }
  ad_group {
    resource_name: "customers/5490136129/adGroups/120723736214"
    status: ENABLED
    name: "1 Year"
    campaign: "customers/5490136129/campaigns/13005712685"
  }
  metrics {
    clicks: 119
    cost_micros: 406509475
    engagements: 5148
    impressions: 12970
    interactions: 5148
  }
  ad_group_ad {
    resource_name: "customers/5490136129/adGroupAds/120723736214~522037559651"
    ad {
      resource_name: "customers/5490136129/ads/522037559651"
      final_urls: "http://www.farmlinkproject.org";
      name: "Ad #1"
    }
  }
  segments {
    date: "2021-06-29"
  }
}
results {
  campaign {
    resource_name: "customers/5490136129/campaigns/13005712685"
    status: ENABLED
    name: "The Farmlink Project 1 Year"
    id: 13005712685
  }
  ad_group {
    resource_name: "customers/5490136129/adGroups/120723736214"
    status: ENABLED
    name: "1 Year"
    campaign: "customers/5490136129/campaigns/13005712685"
  }
  metrics {
    clicks: 101
    cost_micros: 408349707
    engagements: 5137
    impressions: 11536
    interactions: 5137
  }
  ad_group_ad {
    resource_name: "customers/5490136129/adGroupAds/120723736214~522037559651"
    ad {
      resource_name: "customers/5490136129/ads/522037559651"
      final_urls: "http://www.farmlinkproject.org";
      name: "Ad #1"
    }
  }
  segments {
    date: "2021-06-30"
  }
}
results {
  campaign {
    resource_name: "customers/5490136129/campaigns/13005712685"
    status: ENABLED
    name: "The Farmlink Project 1 Year"
    id: 13005712685
  }
  ad_group {
    resource_name: "customers/5490136129/adGroups/120723736214"
    status: ENABLED
    name: "1 Year"
    campaign: "customers/5490136129/campaigns/13005712685"
  }
  metrics {
    clicks: 11
    cost_micros: 97084662
    engagements: 1213
    impressions: 5148
    interactions: 1213
  }
  ad_group_ad {
    resource_name: "customers/5490136129/adGroupAds/120723736214~522037559651"
    ad {
      resource_name: "customers/5490136129/ads/522037559651"
      final_urls: "http://www.farmlinkproject.org";
      name: "Ad #1"
    }
  }
  segments {
    date: "2021-07-06"
  }
}
results {
  campaign {
    resource_name: "customers/5490136129/campaigns/13005712685"
    status: ENABLED
    name: "The Farmlink Project 1 Year"
    id: 13005712685
  }
  ad_group {
    resource_name: "customers/5490136129/adGroups/120723736214"
    status: ENABLED
    name: "1 Year"
    campaign: "customers/5490136129/campaigns/13005712685"
  }
  metrics {
    clicks: 8
    cost_micros: 43709610
    engagements: 337
    impressions: 1399
    interactions: 337
  }
  ad_group_ad {
    resource_name: "customers/5490136129/adGroupAds/120723736214~522037559651"
    ad {
      resource_name: "customers/5490136129/ads/522037559651"
      final_urls: "http://www.farmlinkproject.org";
      name: "Ad #1"
    }
  }
  segments {
    date: "2021-07-07"
  }
}
results {
  campaign {
    resource_name: "customers/5490136129/campaigns/13005712685"
    status: ENABLED
    name: "The Farmlink Project 1 Year"
    id: 13005712685
  }
  ad_group {
    resource_name: "customers/5490136129/adGroups/120723736214"
    status: ENABLED
    name: "1 Year"
    campaign: "customers/5490136129/campaigns/13005712685"
  }
  metrics {
    clicks: 28
    cost_micros: 36126822
    engagements: 553
    impressions: 1770
    interactions: 553
  }
  ad_group_ad {
    resource_name: "customers/5490136129/adGroupAds/120723736214~522037559651"
    ad {
      resource_name: "customers/5490136129/ads/522037559651"
      final_urls: "http://www.farmlinkproject.org";
      name: "Ad #1"
    }
  }
  segments {
    date: "2021-07-08"
  }
}
results {
  campaign {
    resource_name: "customers/5490136129/campaigns/13005712685"
    status: ENABLED
    name: "The Farmlink Project 1 Year"
    id: 13005712685
  }
  ad_group {
    resource_name: "customers/5490136129/adGroups/120723736214"
    status: ENABLED
    name: "1 Year"
    campaign: "customers/5490136129/campaigns/13005712685"
  }
  metrics {
    clicks: 39
    cost_micros: 35304418
    engagements: 762
    impressions: 1984
    interactions: 762
  }
  ad_group_ad {
    resource_name: "customers/5490136129/adGroupAds/120723736214~522037559651"
    ad {
      resource_name: "customers/5490136129/ads/522037559651"
      final_urls: "http://www.farmlinkproject.org";
      name: "Ad #1"
    }
  }
  segments {
    date: "2021-07-09"
  }
}
results {
  campaign {
    resource_name: "customers/5490136129/campaigns/13005712685"
    status: ENABLED
    name: "The Farmlink Project 1 Year"
    id: 13005712685
  }
  ad_group {
    resource_name: "customers/5490136129/adGroups/120723736214"
    status: ENABLED
    name: "1 Year"
    campaign: "customers/5490136129/campaigns/13005712685"
  }
  metrics {
    clicks: 72
    cost_micros: 34500037
    engagements: 849
    impressions: 2476
    interactions: 849
  }
  ad_group_ad {
    resource_name: "customers/5490136129/adGroupAds/120723736214~522037559651"
    ad {
      resource_name: "customers/5490136129/ads/522037559651"
      final_urls: "http://www.farmlinkproject.org";
      name: "Ad #1"
    }
  }
  segments {
    date: "2021-07-10"
  }
}
results {
  campaign {
    resource_name: "customers/5490136129/campaigns/13005712685"
    status: ENABLED
    name: "The Farmlink Project 1 Year"
    id: 13005712685
  }
  ad_group {
    resource_name: "customers/5490136129/adGroups/120723736214"
    status: ENABLED
    name: "1 Year"
    campaign: "customers/5490136129/campaigns/13005712685"
  }
  metrics {
    clicks: 75
    cost_micros: 33081178
    engagements: 879
    impressions: 2250
    interactions: 879
  }
  ad_group_ad {
    resource_name: "customers/5490136129/adGroupAds/120723736214~522037559651"
    ad {
      resource_name: "customers/5490136129/ads/522037559651"
      final_urls: "http://www.farmlinkproject.org";
      name: "Ad #1"
    }
  }
  segments {
    date: "2021-07-11"
  }
}
results {
  campaign {
    resource_name: "customers/5490136129/campaigns/13005712685"
    status: ENABLED
    name: "The Farmlink Project 1 Year"
    id: 13005712685
  }
  ad_group {
    resource_name: "customers/5490136129/adGroups/120723736214"
    status: ENABLED
    name: "1 Year"
    campaign: "customers/5490136129/campaigns/13005712685"
  }
  metrics {
    clicks: 72
    cost_micros: 31475781
    engagements: 1141
    impressions: 3471
    interactions: 1141
  }
  ad_group_ad {
    resource_name: "customers/5490136129/adGroupAds/120723736214~522037559651"
    ad {
      resource_name: "customers/5490136129/ads/522037559651"
      final_urls: "http://www.farmlinkproject.org";
      name: "Ad #1"
    }
  }
  segments {
    date: "2021-07-12"
  }
}
results {
  campaign {
    resource_name: "customers/5490136129/campaigns/13005712685"
    status: ENABLED
    name: "The Farmlink Project 1 Year"
    id: 13005712685
  }
  ad_group {
    resource_name: "customers/5490136129/adGroups/120723736214"
    status: ENABLED
    name: "1 Year"
    campaign: "customers/5490136129/campaigns/13005712685"
  }
  metrics {
    clicks: 78
    cost_micros: 34672227
    engagements: 1069
    impressions: 3155
    interactions: 1069
  }
  ad_group_ad {
    resource_name: "customers/5490136129/adGroupAds/120723736214~522037559651"
    ad {
      resource_name: "customers/5490136129/ads/522037559651"
      final_urls: "http://www.farmlinkproject.org";
      name: "Ad #1"
    }
  }
  segments {
    date: "2021-07-13"
  }
}
field_mask {
  paths: "campaign.id"
  paths: "campaign.name"
  paths: "campaign.status"
  paths: "ad_group.campaign"
  paths: "ad_group.name"
  paths: "ad_group.status"
  paths: "ad_group_ad.ad.name"
  paths: "ad_group_ad.ad.final_urls"
  paths: "metrics.impressions"
  paths: "metrics.clicks"
  paths: "metrics.cost_micros"
  paths: "metrics.engagements"
  paths: "metrics.interactions"
  paths: "segments.date"
}
>
PS C:\Personal\Consulting\Farmlink\GoogleAdwords>

Reply via email to