Re: different responses from google ads endpoints

2024-07-05 Thread Carlie McLaughlin
See the requested info below:

Geo API: curl --location 
'https://googleads.googleapis.com/v15/customers/2574544911/googleAds:search' 
\
--header 'Authorization: Bearer 
ya29.a0AXooCgt2pCQygzHmfuHwGC2C5FGzfHJzb3vTyPwtpOZ4wjwxpd_4HBdhUEPa22s4je3L90nqyfLpzuNzWOdb5MPQthT-oiu1xw7vUtOjk3QDHaFEkUAn5-93bw4oioJrn1XHxZ0TWGWMS6i8G0XNvBMgtB5lJ9Q2e5Btv40aCgYKAcESARESFQHGX2MigOwHdh7P90dqXIwt0rss4w0174'
 
\
--header 'Developer-Token: wHW9zT2p9X3SKI8mhb7L9A' \
--header 'login-customer-id: 4742540146' \
--header 'Content-Type: application/json' \
--data '{"query":"SELECT segments.date, campaign.id , campaign.name, 
ad_group.id, ad_group.name, metrics.all_conversions, 
metrics.all_conversions_value, metrics.clicks, metrics.conversions, 
metrics.conversions_value, metrics.cost_micros, 
metrics.cross_device_conversions, metrics.impressions, metrics.video_views, 
metrics.interaction_event_types, metrics.interactions, 
metrics.view_through_conversions, segments.geo_target_city, 
segments.geo_target_metro, segments.geo_target_region, 
segments.geo_target_county, segments.geo_target_most_specific_location, 
geographic_view.location_type FROM geographic_view WHERE segments.date 
between '\''2024-06-05'\'' and '\''2024-06-05'\'' and metrics.clicks != 
'\''0'\''"
}'
Request ID: K4FfjuuC82b2k6PxYCZ_Ew
Developer-Token: wHW9zT2p9X3SKI8mhb7L9A
Customer ID: 4742540146

Daily APi: curl --location 
'https://googleads.googleapis.com/v15/customers/2574544911/googleAds:search' 
\
--header 'Authorization: Bearer 
ya29.a0AXooCgt2pCQygzHmfuHwGC2C5FGzfHJzb3vTyPwtpOZ4wjwxpd_4HBdhUEPa22s4je3L90nqyfLpzuNzWOdb5MPQthT-oiu1xw7vUtOjk3QDHaFEkUAn5-93bw4oioJrn1XHxZ0TWGWMS6i8G0XNvBMgtB5lJ9Q2e5Btv40aCgYKAcESARESFQHGX2MigOwHdh7P90dqXIwt0rss4w0174'
 
\
--header 'Developer-Token: wHW9zT2p9X3SKI8mhb7L9A' \
--header 'login-customer-id: 4742540146' \
--header 'Content-Type: application/json' \
--data '{"query":"SELECT segments.date, campaign.id, campaign.name, 
metrics.clicks, metrics.impressions FROM campaign WHERE segments.date 
between '\''2024-06-05'\'' and '\''2024-06-05'\''"
}'
Request ID: yEoPfcpTx9Un5qutP-2IFA
Developer-Token: wHW9zT2p9X3SKI8mhb7L9A
Customer ID: 4742540146


On Wednesday, July 3, 2024 at 2:46:58 PM UTC-4 Google Ads API Forum Advisor 
wrote:

Hi,

The screenshot which you have provided corresponds to the ad_group resource 
not the geographic_view, so I would recommend to use the query which was 
provided by us and then match the metrics data from the Google Ads UI. 
While mapping the data from the Google Ads UI to the Google Ads API you 
should use the same resource.

Kindly note that we have executed both queries provided by you and observed 
the same impression value of '83300' without any discrepancies in the 
results. I recommend re-running both queries and then comparing the 
impressions from the ad_group and campaign resources in the Google Ads API. 
However, if you are still facing discrepancies, then kindly provide us with 
the complete API logs (request 

 
and response 

 
logs with request-id 

 
and request header 
)
 
generated at your end to better assist you further. 

  


*This message is in relation to case "ref:!00D1U01174p.!5004Q02tJTqh:ref" 
(ADR-00244034) Thanks,*
  [image: Google Logo] *Google Ads API Team* 
*Register 
 for 
the upcoming workshop: Performance Max and the Google Ads API!*
 
​​​

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
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 adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/509bc098-9ad0-46c9-a832-9f5d2dd98497n%40googlegroups.com.


Re: different responses from google ads endpoints

2024-07-03 Thread Carlie McLaughlin
Hi!

This doesn't really answer our question. 

We have 2 endpoints that return different total impression totals.


This is a 1 endpoint (breakdown):
SELECT campaign.id, campaign.name, ad_group.id, ad_group.name, 
metrics.all_conversions, metrics.all_conversions_value, metrics.clicks, 
metrics.conversions, metrics.conversions_value, metrics.cost_micros, 
metrics.cross_device_conversions, metrics.impressions, 
metrics.video_views,metrics.interaction_event_types, 
metrics.interactions, metrics.view_through_conversions, segments.date FROM 
ad_group WHERE segments.date BETWEEN '2024-06-05' and '2024-06-05' AND 
metrics.clicks != '0'

This is a 1 endpoint (non breakdown)
SELECT segments.date, campaign.id, campaign.name, metrics.clicks, 
metrics.impressions FROM campaign WHERE segments.date between '2024-06-05' 
and '2024-06-05''

When you call the 2 different endpoints, they result in different 
impression numbers.
On Tuesday, July 2, 2024 at 2:57:58 PM UTC-4 Google Ads API Forum Advisor 
wrote:

> Hi,
>
> No, you can refer to that response and query in order to get the clicks as 
> per the screenshot provided by you. However, for better visibility, I am 
> adding the same query again below for your reference.
>
>
> SELECT campaign.id, campaign.name, ad_group.id, ad_group.name
>
> , metrics.all_conversions,
>  metrics.all_conversions_value, metrics.clicks, metrics.conversions, 
> metrics.conversions_value,
>  metrics.cost_micros, metrics.cross_device_conversions, metrics.impressions, 
>  metrics.video_views,metrics.interaction_event_types, metrics.interactions,
>  metrics.view_through_conversions, segments.date 
> FROM ad_group WHERE segments.date BETWEEN '2024-06-05' and '2024-06-05' AND 
> metrics.clicks != '0'
>
>
>
> *This message is in relation to case "ref:!00D1U01174p.!5004Q02tJTqh:ref" 
> (ADR-00244034) Thanks,*
>   
> [image: Google Logo] *Google Ads API Team* 
> *Register 
>  for 
> the upcoming workshop: Performance Max and the Google Ads API!*
>  
>
>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
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 adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/95e5b01e-f2c6-4ea5-aa24-e9aff0d9f847n%40googlegroups.com.


Re: different responses from google ads endpoints

2024-07-02 Thread Carlie McLaughlin
Hello! So should we not use the info you posted in the first reply? Are 
there any further updates? 

On Monday, July 1, 2024 at 2:44:38 PM UTC-4 Google Ads API Forum Advisor 
wrote:

> Hi,
>
> Please ignore my previous email.
>
> If you want to compare the API data with respect to the provided UI 
> screenshot, you can refer to the below query to get the exact number of 
> clicks.
>
>
> SELECT campaign.id, campaign.name, ad_group.id, ad_group.name, 
> metrics.all_conversions,
>  metrics.all_conversions_value, metrics.clicks, metrics.conversions, 
> metrics.conversions_value,
>  metrics.cost_micros, metrics.cross_device_conversions, metrics.impressions, 
> metrics.video_views,
>  metrics.interaction_event_types, metrics.interactions, 
> metrics.view_through_conversions, segments.date 
> FROM ad_group WHERE segments.date BETWEEN '2024-06-05' and '2024-06-05' AND 
> metrics.clicks != '0'
>
> I hope it helps. Kindly get back to us if you have any further issues or 
> concerns related to the Google Ads API 
> . 
>
>
> *This message is in relation to case "ref:!00D1U01174p.!5004Q02tJTqh:ref" 
> (ADR-00244034) Thanks,*
>   
> [image: Google Logo] *Google Ads API Team* 
> *Register 
>  for 
> the upcoming workshop: Performance Max and the Google Ads API!*
>  
>
>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
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 adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/6ab72a21-223c-40fd-aadf-e2145612cd6fn%40googlegroups.com.


Preferred Deals

2021-02-08 Thread Carlie McLaughlin
Hello,

We would like to be able to set up some preferred deals in order to run 
campaigns on Youtube TV inventory in DV360. We were told that we needed to 
do this through out Google Ads rep, but we do not have one for our account. 
Can we identify and set up deals on our own, or is there another way to set 
up a preferred deal in order to gain access to Youtube TV inventory?

Thank you,
Carlie

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
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 adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/82e20aa1-c21f-4d04-8c5b-1d62fa5bbed3n%40googlegroups.com.


Re: AdWords Native Lookback Window

2020-12-03 Thread Carlie McLaughlin
Hi Xiaoming,

No, I am referring to the lookback window that the UI uses to attribute 
conversions. We currently collect a lookback window of 3 days, but it looks 
like the conversion numbers continue to change even 3 days after number are 
recorded. Do you have this info?

Thank you,
Carlie

On Thursday, December 3, 2020 at 12:11:57 PM UTC-5 adsapiforumadvisor wrote:

> Hi Carlie,
>
> Thank you for reaching out. If you are referring to the date range, the 
> Google Ads UI is pretty much flexible to fetch all the historical data in 
> the Google Ads account. That means you could customize the date range to 
> fetch the metrics during the time period you select. As the data is queried 
> using AWQL 
>  
> or GAQL 
> ,
>  
> you would be able to use the pre-defined date range in both query 
> languages. If you have any other questions or concerns, please let us know.
>
> Thanks and regards,
> Xiaoming, Google Ads API Team
>  
> [image: Google Logo] 
> Xiaoming 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q28mEmK: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 adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
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 adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/bb5668d0-7a0f-4dc6-9554-bb56285ca0edn%40googlegroups.com.


AdWords Native Lookback Window

2020-12-01 Thread Carlie McLaughlin
Hello,

What is the lookback window used in the AdWords Native UI? We would like to 
configure out API lookback window to match that of the UI but can't find 
documentation related to this topic.

Thank you,
Carlie

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
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 adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/5585e55a-ff94-4f4b-b5a8-f590cefe6ddbn%40googlegroups.com.