Ads API Basic access level validation is pending for a long time

2024-03-25 Thread Arthur Noronha
Hello,

We have been asking for the Basic Level, and we still have no response.

I have been contacting the support by all the forms provided in the 
previous threads I saw here, but I haven't received any more news.

Here is my last ticket case  ID 7-756835541

This began to be really problematic for my product, so I would appreciate 
some reactivity here. I am to your disposal for sending complementary 
information if needed, the ID of the ads manager account is inside the 
above ticket for privacy issue.

Thanks.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/edc5c735-bdbd-4733-991a-8a9145e7328fn%40googlegroups.com.


Re: null value in campaign_search_term_insight

2023-08-18 Thread Arthur
Hi everyone,

If you don't mind me appending to this thread, I'd like to add a similar 
case with null values and a false positive in the GAQL Query Validator 
(v14). All based on the campaign_search_term_insight report.

*1/3) Empty results - but correct number of items in result set*
I modified Alex's query. In particular the two segments 
"search_subcategory" and "search_term" were added for more detail. Doing so 
resulted in the API stating that a WHERE condition of the field 
"campaign_search_term_insight.id" is required. Passing this as well, 
returned the correct number of items successfully (here 14, just as I see 
in the Google Ads Web UI). But all of them were empty. See query and result 
here:

QUERY:
"""
SELECT
campaign_search_term_insight.campaign_id,
campaign_search_term_insight.category_label,
campaign_search_term_insight.id,
segments.search_subcategory,
segments.search_term
FROM campaign_search_term_insight
WHERE
campaign_search_term_insight.campaign_id = 'xxx'
and campaign_search_term_insight.id = 'yyy'
"""
RESULT:
"""
{'results': [
  {'segments': {}},
  {'segments': {}},
  {'segments': {}},
  {'segments': {}},
  {'segments': {}},
  {'segments': {}},
  {'segments': {}},
  {'segments': {}},
  {'segments': {}},
  {'segments': {}},
  {'segments': {}},
  {'segments': {}},
  {'segments': {}},
  {'segments': {}}],
 'fieldMask': 
'campaignSearchTermInsight.campaignId,campaignSearchTermInsight.categoryLabel,campaignSearchTermInsight.id,segments.searchSubcategory,segments.searchTerm'}
"""

*2/3) Internal Server Error*
And once I add a metric such as "metrics.impressions" to SELECT, an 
internal error occurs.
QUERY:
"""
SELECT
campaign_search_term_insight.campaign_id,
campaign_search_term_insight.category_label,
campaign_search_term_insight.id,
segments.search_subcategory,
segments.search_term,
*metrics.impressions*
FROM campaign_search_term_insight
WHERE
campaign_search_term_insight.campaign_id = 'xxx'
and campaign_search_term_insight.id = 'yyy'
"""
ERROR:
"""
Request made:
ClientCustomerId: xxx,
Host: googleads.googleapis.com,
Method: /google.ads.googleads.v14.services.GoogleAdsService/Search,
RequestId: DpspNLx6Qb9V8b7DCVkeZQ,
IsFault: True,
FaultMessage: Internal error encountered.
"""

*3/3) False positive in GAQL Query Validator*
To see the false positive in the GAQL Query Validator, please validate this 
query (which is the above one, but without the WHERE conditions):
https://developers.google.com/google-ads/api/fields/v14/query_validator
"""
SELECT
campaign_search_term_insight.campaign_id,
campaign_search_term_insight.category_label,
campaign_search_term_insight.id,
segments.search_subcategory,
segments.search_term
FROM campaign_search_term_insight
"""
The validation shows a valid query. But as stated above, the API requires 
the campaign_id and id to be filtered by, within WHERE. Hence, I expected 
the validator to hint for these two missing conditions.
"""
WHERE
campaign_search_term_insight.campaign_id = 'xxx'
and campaign_search_term_insight.id = 'yyy'
"""

*So my question is this: Is there anything I am missing in formulating the 
GAQL query to retrieve actual data instead of the correct number of empty 
items?*

*fyi, the Python code for running the queries, if relevant:*
*"""*
*#versions:*
*#Python 3.11.2*





*#google-ads21.2.0#google-api-core   
2.11.0#google-auth   2.22.0#google-auth-oauthlib 
 1.0.0#googleapis-common-protos  1.59.1*


















*from google.ads.googleads.client import GoogleAdsClientfrom 
google.protobuf.json_format import MessageToDictclient = 
GoogleAdsClient.load_from_storage(xxx, version="v14")service = 
client.get_service("GoogleAdsService")query = """xxx"""search_request = 
client.get_type("SearchGoogleAdsRequest")search_request.customer_id = 
xxxsearch_request.query = querysearch_request.page_size = 1000results = 
service.search(request=search_request)MessageToDict(results._pb)*
*"""*

Thank you and kind regards,
Arthur

Google Ads API Forum Advisor schrieb am Donnerstag, 17. August 2023 um 
15:05:49 UTC+2:

> Hi Alex,
>
> Thank you for reaching out to Google Ads API Forum.
>
> Kindly note that we could only provide support to Google Ads API-related 
> concerns and technical implementations. With this, you may note that the 
> API only reflects the UI which means that if there is available data in the 
> UI then the API should be able to manage or pull the same. With regards to 
> your concern, could you share with us the full UI screenshot (without 
> cropping) showing the data you are trying to retrieve using the said query? 
> This is so 

Re: What is the correct Rest API request body for generating keyword ideas?

2021-06-04 Thread Salomey Arthur
Ok guys, i just found the solution to the request body for generating 
keyword ideas. I have made the necessary correction and my code is running 
alright along with the Rest API.
Thanks to all who had intention to help me with a solution.

On Friday, June 4, 2021 at 12:24:20 PM UTC Salomey Arthur wrote:

> Hello Peter,
>
> Thanks for reaching out. Please check out my code for generating the 
> keyword ideas:
>
> $curl = curl_init();
> curl_setopt_array($curl, array(
> CURLOPT_URL => "
> https://googleads.googleapis.com/v7/customers/{customer 
> id}:generateKeywordIdeas",
>
> CURLOPT_RETURNTRANSFER => true,
> CURLOPT_ENCODING => "",
> CURLOPT_MAXREDIRS => 10,
> CURLOPT_TIMEOUT => 30,
> CURLOPT_FOLLOWLOCATION => false,
> CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
> CURLOPT_CUSTOMREQUEST => "POST",
> CURLOPT_POSTFIELDS =>"{
> 'geoTargetConstants': ['USA','Canada'],
> 'includeAdultKeywords': 'false',
> 'pageToken': '1',
> 'pageSize': '1000',
> 'keywordPlanNetwork': 'GOOGLE_SEARCH',
> 'keywordAnnotation': ['KEYWORD_CONCEPT'],
> 'aggregateMetrics': 'DEVICE',
> 'language': 'English',
> 'siteSeed': {
> 'site': 'https://www.example.com'
>
> } 
> }",
> CURLOPT_HTTPHEADER => array(
> "Content-Type: application/json",
> "developer-token: {developer token}",
> "login-customer-id: {manager id}",
> "Authorization: Bearer {bearer token}"
>
> ),
> ));
> $response = curl_exec($curl);
> 
> curl_close($curl);
> var_dump($response);
>
> On Friday, June 4, 2021 at 5:50:39 AM UTC adsapiforumadvisor wrote:
>
>> Hi,
>>
>> I'm from the API support team and allow me to chime in on your concern.
>>
>> Examples <https://developers.google.com/google-ads/api/rest/examples> 
>> are currently limited and we do not have one specific to what you are 
>> looking for. That said, could you share the error you are encountering so 
>> our team can have a closer look?
>>
>>
>> Best regards,
>>
>> [image: Google Logo] 
>> Peter Laurence Napa Oliquino 
>> Google Ads API Team 
>>   
>>
>> ref:_00D1U1174p._5004Q27vHQp: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/fff0bf69-7c49-4132-b21d-371bfa67f468n%40googlegroups.com.


Re: What is the correct Rest API request body for generating keyword ideas?

2021-06-04 Thread Salomey Arthur
Hello Peter,

Thanks for reaching out. Please check out my code for generating the 
keyword ideas:

$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => "https://googleads.googleapis.com/v7/customers/{customer 
id}:generateKeywordIdeas",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_FOLLOWLOCATION => false,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS =>"{
'geoTargetConstants': ['USA','Canada'],
'includeAdultKeywords': 'false',
'pageToken': '1',
'pageSize': '1000',
'keywordPlanNetwork': 'GOOGLE_SEARCH',
'keywordAnnotation': ['KEYWORD_CONCEPT'],
'aggregateMetrics': 'DEVICE',
'language': 'English',
'siteSeed': {
'site': 'https://www.example.com'
} 
}",
CURLOPT_HTTPHEADER => array(
"Content-Type: application/json",
"developer-token: {developer token}",
"login-customer-id: {manager id}",
"Authorization: Bearer {bearer token}"
),
));
$response = curl_exec($curl);

curl_close($curl);
var_dump($response);

On Friday, June 4, 2021 at 5:50:39 AM UTC adsapiforumadvisor wrote:

> Hi,
>
> I'm from the API support team and allow me to chime in on your concern.
>
> Examples  are 
> currently limited and we do not have one specific to what you are looking 
> for. That said, could you share the error you are encountering so our team 
> can have a closer look?
>
>
> Best regards,
>
> [image: Google Logo] 
> Peter Laurence Napa Oliquino 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q27vHQp: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/78746531-57f0-4a57-b2af-3034956e6f53n%40googlegroups.com.


Re: What is the correct Rest API request body for creating new campaign?

2021-06-03 Thread Salomey Arthur
Hi Bram,

Please one more thing: I get errors when i send request to generate keyword 
ideas. The request body is quite large and i keep getting errors. Please 
i'm still using Rest API.
Can you please help me with a quick example for the request body to 
generate keyword ideas?
This is the endpoint: 
https://googleads.googleapis.com/v7/customers/{customer 
id}:generateKeywordIdeas




On Thursday, June 3, 2021 at 3:22:01 PM UTC Bram van Rijswijk wrote:

> Hi, change 'campaigneBudget' to 'campaign_budget'. Before you create a 
> campaign you have to create a budget. See this page: 
> https://developers.google.com/google-ads/api/rest/examples.
> On Thursday, June 3, 2021 at 4:10:23 PM UTC+2 poeti...@gmail.com wrote:
>
>> Hi guys, please i have been struggling with the Rest API request body for 
>> creating new ad campaign. I keep getting response errors. Please help me 
>> with the correct request body. The operations involved for 'create' are 
>> many. I have read all about it too. Please check my code and help me 
>> correct it:
>>
>> $curl = curl_init();
>> curl_setopt_array($curl, array(
>> CURLOPT_URL => "
>> https://googleads.googleapis.com/v7/customers/{my customer id 
>> here}/campaigns:mutate",
>> CURLOPT_RETURNTRANSFER => true,
>> CURLOPT_ENCODING => "",
>> CURLOPT_MAXREDIRS => 10,
>> CURLOPT_TIMEOUT => 30,
>> CURLOPT_FOLLOWLOCATION => false,
>> CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
>> CURLOPT_CUSTOMREQUEST => "POST",
>> CURLOPT_POSTFIELDS =>"{
>> 'operations': [
>>   {
>> 'create': {
>>   'name': 'First Campaign #{1}',
>>   'advertisingChannelType': 'SEARCH',
>>   'status': 'PAUSED',
>>   'networkSettings': {
>>   'targetGoogleSearch': true,
>> 'targetSearchNetwork': true,
>> 'targetContentNetwork': false,
>> 'targetPartnerSearchNetwork': false
>>   },
>> 'startDate': '{$start_date}',
>> 'endDate': '{$end_date}',
>> 'paymentMode': 'CLICKS',
>>'campaigneBudget': '5'
>> }
>>   }
>> ],
>>   'partialFailure': false,
>>   'validateOnly': false
>> }",
>> CURLOPT_HTTPHEADER => array(
>> "Content-Type: application/json",
>> "developer-token: {my developer token here}",
>> "login-customer-id: {my manager id here}",
>> "Authorization: Bearer {my auth token}"
>> ),
>> ));
>> $response = curl_exec($curl);
>> 
>> curl_close($curl);
>> 
>> var_dump($response)
>>
>> Urgent solution needed. Please help.
>>
>> On Monday, November 23, 2020 at 6:54:53 AM UTC adsapiforumadvisor wrote:
>>
>>> Hi Steve,
>>>
>>> Thank you for reaching out.
>>>
>>> You may refer to this guide 
>>>  
>>> on how you can derive and construct URLs if you choose to use the REST 
>>> interface for mutate requests.
>>>
>>> I hope this helps and please let me know if you have additional 
>>> clarifications.
>>>
>>> Best regards,
>>> [image: Google Logo] 
>>> Peter Laurence Napa Oliquino 
>>> Google Ads API Team 
>>>   
>>>
>>> ref:_00D1U1174p._5004Q27vHQp: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/5892a869-e0b0-4a2c-b03d-aaedb0bf8cf6n%40googlegroups.com.


Re: What is the correct Rest API request body for creating new campaign?

2021-06-03 Thread Salomey Arthur
Thanks Bram for the response.

I found the solution to it not long ago. There are two ways involved if 
using Rest API. 

First instance is a request body that initializes multiple campaign 
operations(campaign budget, campaign, AdGroup, Text Ad) with one endpoint. 

Second instance is individual request bodies for each operation with 
different endpoints matching them. 
I opted for the second and it's also supposed to follow the sequence(1st: 
campaign budget, 2nd: campaign, 3rd: AdGroup, 4th: Text Ad). My problem 
was, i attempted creating campaign individually whilst i hadn't created 
it's budget first.

Everything is running well now.

I really appreciate the prompt response from you though.
Thanks again Bram.

On Thursday, June 3, 2021 at 3:25:33 PM UTC Bram van Rijswijk wrote:

> Ah I see 'campaignBudget' can also be used. We use 'campaign_budget'. As 
> long as it has the resource name, it will work.
>
> On Thursday, June 3, 2021 at 5:22:01 PM UTC+2 Bram van Rijswijk wrote:
>
>> Hi, change 'campaigneBudget' to 'campaign_budget'. Before you create a 
>> campaign you have to create a budget. See this page: 
>> https://developers.google.com/google-ads/api/rest/examples.
>> On Thursday, June 3, 2021 at 4:10:23 PM UTC+2 poeti...@gmail.com wrote:
>>
>>> Hi guys, please i have been struggling with the Rest API request body 
>>> for creating new ad campaign. I keep getting response errors. Please help 
>>> me with the correct request body. The operations involved for 'create' are 
>>> many. I have read all about it too. Please check my code and help me 
>>> correct it:
>>>
>>> $curl = curl_init();
>>> curl_setopt_array($curl, array(
>>> CURLOPT_URL => "
>>> https://googleads.googleapis.com/v7/customers/{my customer id 
>>> here}/campaigns:mutate",
>>> CURLOPT_RETURNTRANSFER => true,
>>> CURLOPT_ENCODING => "",
>>> CURLOPT_MAXREDIRS => 10,
>>> CURLOPT_TIMEOUT => 30,
>>> CURLOPT_FOLLOWLOCATION => false,
>>> CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
>>> CURLOPT_CUSTOMREQUEST => "POST",
>>> CURLOPT_POSTFIELDS =>"{
>>> 'operations': [
>>>   {
>>> 'create': {
>>>   'name': 'First Campaign #{1}',
>>>   'advertisingChannelType': 'SEARCH',
>>>   'status': 'PAUSED',
>>>   'networkSettings': {
>>>   'targetGoogleSearch': true,
>>> 'targetSearchNetwork': true,
>>> 'targetContentNetwork': false,
>>> 'targetPartnerSearchNetwork': false
>>>   },
>>> 'startDate': '{$start_date}',
>>> 'endDate': '{$end_date}',
>>> 'paymentMode': 'CLICKS',
>>>'campaigneBudget': '5'
>>> }
>>>   }
>>> ],
>>>   'partialFailure': false,
>>>   'validateOnly': false
>>> }",
>>> CURLOPT_HTTPHEADER => array(
>>> "Content-Type: application/json",
>>> "developer-token: {my developer token here}",
>>> "login-customer-id: {my manager id here}",
>>> "Authorization: Bearer {my auth token}"
>>> ),
>>> ));
>>> $response = curl_exec($curl);
>>> 
>>> curl_close($curl);
>>> 
>>> var_dump($response)
>>>
>>> Urgent solution needed. Please help.
>>>
>>> On Monday, November 23, 2020 at 6:54:53 AM UTC adsapiforumadvisor wrote:
>>>
 Hi Steve,

 Thank you for reaching out.

 You may refer to this guide 
  
 on how you can derive and construct URLs if you choose to use the REST 
 interface for mutate requests.

 I hope this helps and please let me know if you have additional 
 clarifications.

 Best regards,
 [image: Google Logo] 
 Peter Laurence Napa Oliquino 
 Google Ads API Team 
   

 ref:_00D1U1174p._5004Q27vHQp: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.

What is the correct Rest API request body for creating new campaign?

2021-06-03 Thread Salomey Arthur
Hi guys, please i have been struggling with the Rest API request body for 
creating new ad campaign. I keep getting response errors. Please help me 
with the correct request body. The operations involved for 'create' are 
many. I have read all about it too. Please check my code and help me 
correct it:

$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 
"https://googleads.googleapis.com/v7/customers/{my customer id 
here}/campaigns:mutate",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_FOLLOWLOCATION => false,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS =>"{
'operations': [
  {
'create': {
  'name': 'First Campaign #{1}',
  'advertisingChannelType': 'SEARCH',
  'status': 'PAUSED',
  'networkSettings': {
  'targetGoogleSearch': true,
'targetSearchNetwork': true,
'targetContentNetwork': false,
'targetPartnerSearchNetwork': false
  },
'startDate': '{$start_date}',
'endDate': '{$end_date}',
'paymentMode': 'CLICKS',
   'campaigneBudget': '5'
}
  }
],
  'partialFailure': false,
  'validateOnly': false
}",
CURLOPT_HTTPHEADER => array(
"Content-Type: application/json",
"developer-token: {my developer token here}",
"login-customer-id: {my manager id here}",
"Authorization: Bearer {my auth token}"
),
));
$response = curl_exec($curl);

curl_close($curl);

var_dump($response)

Urgent solution needed. Please help.

On Monday, November 23, 2020 at 6:54:53 AM UTC adsapiforumadvisor wrote:

> Hi Steve,
>
> Thank you for reaching out.
>
> You may refer to this guide 
>  on 
> how you can derive and construct URLs if you choose to use the REST 
> interface for mutate requests.
>
> I hope this helps and please let me know if you have additional 
> clarifications.
>
> Best regards,
> [image: Google Logo] 
> Peter Laurence Napa Oliquino 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q27vHQp: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/472d3607-aa3c-4ea2-aa91-a0b1008f92ccn%40googlegroups.com.


Re: Import Campaigns From Adwords into Bing - "We were unable to sign you in to your Google Ad Words account"

2020-08-06 Thread Arthur Branciard
Hi Anash,

Thanks for getting back to me.

The Bing rep's name I raised the matter to is CM.
email: adspt.acst.as.00.en.arv.que.am.t01.spt.00...@css.one.microsoft.com
Service request opened with him: Service Request 1505906160
*CM *| *Microsoft* Advertising Support Specialist | 800-518-5689

Many thanks for your help on sorting this out, much appreciated.

I look forward to hearing back from you then.

Kind regards,

Arthur


On Friday, 7 August 2020 06:22:28 UTC+10, adsapiforumadvisor wrote:
>
> Hi Arthur,
>
> I am not aware of how the Bing App works or what unique password it 
> requires. If you can get more details or loop in someone from their 
> technical support team, I might be able to advise further on how to 
> proceed. Is that possible?
>
> Cheers
> Anash P. Oommen,
> Google Ads API Team.
>
> ref:_00D1U1174p._5004Q23HiSh: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/e7e6365f-358d-4952-8e00-38ed61d04f6ao%40googlegroups.com.


Re: How to "Geographic report" data via API?

2020-06-08 Thread Arthur
I found an old post that gave me enough information to resolve.


On Sunday, June 7, 2020 at 11:58:28 PM UTC-4, Arthur wrote:
>
> I've reviewed the available API reports, but I'm as of yet unsure how to 
> replicate the data form the "Geographic report" section of ads.google.com, 
> aka "Locations that triggered your ads*".*
>
> Specifically, I'm hoping for "All countries > Postal code (United States)
> *"*
>
> Can someone point me in right direction?
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/e8215ad0-2738-4304-9f17-b1ad30e73db7o%40googlegroups.com.


How to "Geographic report" data via API?

2020-06-07 Thread Arthur
I've reviewed the available API reports, but I'm as of yet unsure how to 
replicate the data form the "Geographic report" section of ads.google.com, 
aka "Locations that triggered your ads*".*

Specifically, I'm hoping for "All countries > Postal code (United States)*"*

Can someone point me in right direction?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/d8b41633-b79e-4d21-9ead-5e4867231b92o%40googlegroups.com.


Re: UserListError.ADVERTISER_NOT_WHITELISTED_FOR_USING_UPLOADED_DATA

2019-03-07 Thread Arthur chen
Hi Sai:

Is that issue solved. Our testing account still get this error?

Thanks

Arthur

On Friday, December 21, 2018 at 2:53:05 PM UTC-5, Teja Makani wrote:
>
> Hello Priyanka,
>
> I am Luis's teammate, responding on this thread as he is out of office. 
> You are right, only production accounts needed to be whitelisted to upload 
> customer match data. Also, there is an issue going on to enable customer 
> match upload operations to test accounts. As of now when you perform an 
> upload customer match operation to test accounts you will face 
> ADVERTISER_NOT_WHITELISTED_FOR_USING_UPLOADED_DATA error. I will keep 
> everyone posted on this thread as and when i have more information.
>
> Regards,
> Sai Teja, AdWords API Team
>
> On Tuesday, November 27, 2018 at 10:39:19 AM UTC-5, 
> serg...@clickfunnels.com  wrote:
>>
>> Hello 
>> I'm getting this error trying this example code: 
>> https://github.com/googleads/google-api-ads-ruby/blob/master/adwords_api/examples/v201809/remarketing/add_crm_based_user_list.rb
>>  
>>
>> AdwordsApi::V201802::AdwordsUserListService::ApiException: [
>> *UserListError.ADVERTISER_NOT_WHITELISTED_FOR_USING_UPLOADED_DATA* @ 
>> operations[0].operand]
>>
>>
>> *What should I do to fix that error?*
>>
>>
>> 
>>
>>
>> Test Client Account: 500-997-9511
>>
>> Test Manager Account: 537-432-1982
>>
>> Manager Account: 169-466-2792
>>
>>
>>
>> Request log:
>>
>> [2018-11-27T15:33:04.351501 #10996]  WARN -- : ID: 500-997-9511, URL: 
>> https://adwords.google.com/api/adwords/rm/v201802/AdwordsUserListService, 
>> Service: AdwordsUserListService, Action: mutate, Response time: 171ms, 
>> Request ID: 00057ba57d353e980a815710d40f2753, Operations: 1, Is fault: 
>> true, Fault message: 
>> [UserListError.ADVERTISER_NOT_WHITELISTED_FOR_USING_UPLOADED_DATA @ 
>> operations[0].operand]
>>
>> I, [2018-11-27T15:33:04.351742 #10996]  INFO -- : Outgoing request: 
>> SOAPAction: "mutate", User-Agent: Ruby Sample (AwApi-Ruby/1.3.0, 
>> Common-Ruby/1.0.2, GoogleAdsSavon/1.0.3, ruby/2.3.7, HTTPI/2.4.3, 
>> httpclient), Authorization: REDACTED, Content-Type: text/xml;charset=UTF-8, 
>> Content-Length: 1131 > xmlns:xsd="http://www.w3.org/2001/XMLSchema; xmlns:xsi="
>> http://www.w3.org/2001/XMLSchema-instance; xmlns:wsdl="
>> https://adwords.google.com/api/adwords/rm/v201802; xmlns:env="
>> http://schemas.xmlsoap.org/soap/envelope/; xmlns:ns0="
>> https://adwords.google.com/api/adwords/cm/v201802;>>  
>> xmlns="https://adwords.google.com/api/adwords/cm/v201802;>Ruby 
>> Sample (AwApi-Ruby/1.3.0, Common-Ruby/1.0.2, GoogleAdsSavon/1.0.3, 
>> ruby/2.3.7, HTTPI/2.4.3, 
>> httpclient)REDACTED500-997-9511>  
>> xmlns="https://adwords.google.com/api/adwords/rm/v201802;>ADD>  
>> xsi:type="CrmBasedUserList">Customer relationship management list 
>> #978889A list of customers that originated from email 
>> addresses30CONTACT_INFO
>>
>> I, [2018-11-27T15:33:04.351912 #10996]  INFO -- : Incoming response: 
>> Content-Type: text/xml; charset=UTF-8, Date: Tue, 27 Nov 2018 13:33:04 GMT, 
>> Expires: Tue, 27 Nov 2018 13:33:04 GMT, Cache-Control: private, max-age=0, 
>> X-Content-Type-Options: nosniff, X-Frame-Options: SAMEORIGIN, 
>> X-XSS-Protection: 1; mode=block, Server: GSE, Alt-Svc: quic=":443"; 
>> ma=2592000; v="44,43,39,35", Accept-Ranges: none, Vary: Accept-Encoding, 
>> Transfer-Encoding: chunked http://schemas.xmlsoap.org/soap/envelope/;>> xmlns:ns2="https://adwords.google.com/api/adwords/rm/v201802; xmlns="
>> https://adwords.google.com/api/adwords/cm/v201802;>00057ba57d353e980a815710d40f2753AdwordsUserListServicemutate1171soap:Client[UserListError.ADVERTISER_NOT_WHITELISTED_FOR_USING_UPLOADED_DATA
>>  
>> @ operations[0].operand]https://adwords.google.com/api/adwords/cm/v201802; xmlns:ns2="
>> https://adwords.google.com/api/adwords/rm/v201802;>[UserListError.ADVERTISER_NOT_WHITELISTED_FOR_USING_UPLOADED_DATA
>>  
>> @ 
>> operations[0].operand]ApiException>  
>> xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
>> xsi:type="ns2:UserListError">operations[0].operandoperations0operandUserListError.ADVERTISER_NOT_WHITELISTED_FOR_USING_UPLOADED_DATAUserListErrorUSER_LIST_SERVICE_ERROR
>>
>> AdwordsApi::V201802::AdwordsUserListService::ApiException: 
>> [UserListError.ADVERTISER_NOT_WHITELISTED_FOR_USING_UPLOADED_DATA @ 
>> operations[0].operand]
>>
>> Regards

Re: throwing DetailedReportDownloadResponseException with 400 Response code.

2018-07-19 Thread arthur . balduini
hell

Em quarta-feira, 18 de julho de 2018 12:58:51 UTC-3, Josh Radcliff (AdWords 
API Team) escreveu:
>
> Hi Zweitze,
>
> Thanks for providing those details. The engineer investigating this said 
> they'll be quite helpful. I'll reply back when he has an update.
>
> Cheers,
> Josh, AdWords API Team
>
> On Tuesday, July 17, 2018 at 6:25:46 PM UTC-4, Zweitze wrote:
>>
>> This error was away at my site for quite a few weeks, but reappeared this 
>> morning. The response headers that came with the error were:
>>
>> Content-Disposition 
>> /bigstore/aw3-webapi-report-download/17144261fca9f85-0a63-4a20-9d9f-3f8d5baaf6e5/fileId-null-uuid-1fca9f85-0a63-4a20-9d9f-3f8d5baaf6e5-cid-1714426.tmp.xml.gz
>> X-Content-Type-Options nosniff
>> X-Frame-Options SAMEORIGIN
>> X-XSS-Protection 1; mode=block
>> Alt-Svc quic=":443"; ma=2592000; v="44,43,39,35"
>> Content-Length 0
>> Cache-Control private, max-age=0
>> Content-Type application/x-gzip; charset=UTF-8
>> Date Tue, 17 Jul 2018 04:42:09 GMT
>> Expires Tue, 17 Jul 2018 04:42:09 GMT
>> Server GSE
>>
>> The error occured with some old code running v201710.
>> CustomerId and ReportDefinition are available if necessary, but I can 
>> assure you that that same ReportDefinition (a PLACEMENT_PERFORMANCE_REPORT 
>> this time) was successfully used thousands of times.
>>
>>
>>
>>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/d35c04d5-3d56-4625-a47b-0d97747f09bb%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: throwing DetailedReportDownloadResponseException with 400 Response code.

2018-07-19 Thread arthur . balduini
Hello everyone,

I'm working on an application that retrieves data from the Adwords API and 
I'm facing the same 400 - Bad Request problem. We are working with the 
v201710 version. 
Yesterday I worked normally on the application and today when I arrived I 
faced the exact same problem reported here. I didn't change anything in the 
code that was working just yesterday! 
I spent a lot of time searching for a possible mistake and just want to 
make sure that it might not be an error from my part.

Thanks a lot for your attention!

best regards,

Arthur

Em quarta-feira, 18 de julho de 2018 12:58:51 UTC-3, Josh Radcliff (AdWords 
API Team) escreveu:
>
> Hi Zweitze,
>
> Thanks for providing those details. The engineer investigating this said 
> they'll be quite helpful. I'll reply back when he has an update.
>
> Cheers,
> Josh, AdWords API Team
>
> On Tuesday, July 17, 2018 at 6:25:46 PM UTC-4, Zweitze wrote:
>>
>> This error was away at my site for quite a few weeks, but reappeared this 
>> morning. The response headers that came with the error were:
>>
>> Content-Disposition 
>> /bigstore/aw3-webapi-report-download/17144261fca9f85-0a63-4a20-9d9f-3f8d5baaf6e5/fileId-null-uuid-1fca9f85-0a63-4a20-9d9f-3f8d5baaf6e5-cid-1714426.tmp.xml.gz
>> X-Content-Type-Options nosniff
>> X-Frame-Options SAMEORIGIN
>> X-XSS-Protection 1; mode=block
>> Alt-Svc quic=":443"; ma=2592000; v="44,43,39,35"
>> Content-Length 0
>> Cache-Control private, max-age=0
>> Content-Type application/x-gzip; charset=UTF-8
>> Date Tue, 17 Jul 2018 04:42:09 GMT
>> Expires Tue, 17 Jul 2018 04:42:09 GMT
>> Server GSE
>>
>> The error occured with some old code running v201710.
>> CustomerId and ReportDefinition are available if necessary, but I can 
>> assure you that that same ReportDefinition (a PLACEMENT_PERFORMANCE_REPORT 
>> this time) was successfully used thousands of times.
>>
>>
>>
>>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/2a14dffe-9480-43cd-b8de-0486b0fabf1a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Adding User Interest in a AdGroup returns CriterionError.CANNOT_ADD_CRITERIA_TYPE

2018-05-30 Thread Arthur Polimeni
That's not clear for me yet. 

So where should I add a CriterionUserInterest? in Campaign level?
I didn't find in the official documentation a way to add user interests in 
a ad group or campaign. 

Can you guide me to it, please?
Thanks.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/46061151-cc53-43a2-9403-531b80704d79%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Adding CriterionUserInterest in a AdGroup returns CriterionError.CANNOT_ADD_CRITERIA_TYPE.

2018-05-30 Thread arthur
I'm using .NET Library and I trying add a user interest in a ad group, but 
I always receive the error CriterionError.CANNOT_ADD_CRITERIA_TYPE.

My code:
CriterionUserInterest userInterestTarget = new 
CriterionUserInterest();
userInterestTarget.userInterestId = interest.CriterionId;
userInterestTarget.userInterestName = interest.Description;

BiddableAdGroupCriterion interestBiddableAdGroupCriterion = 
new BiddableAdGroupCriterion();
interestBiddableAdGroupCriterion.adGroupId = AdGroupId;
interestBiddableAdGroupCriterion.criterion = 
userInterestTarget;

AdGroupCriterionOperation 
interestBiddableAdGroupCriterionOperation = new AdGroupCriterionOperation();
interestBiddableAdGroupCriterionOperation.operand = 
interestBiddableAdGroupCriterion;
interestBiddableAdGroupCriterionOperation.@operator = 
Operator.ADD;

_operations.Add(interestBiddableAdGroupCriterionOperation);

What am i doing wrong?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/8218fc65-0d9c-400f-96e9-3201b08e6c87%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Adding User Interest in a AdGroup returns CriterionError.CANNOT_ADD_CRITERIA_TYPE

2018-05-29 Thread arthur
Hi everybody!

I'm using .NET Library and I'm trying to add a user interest in a ad group, 
but I always receive the error CriterionError.CANNOT_ADD_CRITERIA_TYPE.

My code:
CriterionUserInterest userInterestTarget = new 
CriterionUserInterest();
userInterestTarget.userInterestId = interest.CriterionId;
userInterestTarget.userInterestName = interest.Description;

BiddableAdGroupCriterion interestBiddableAdGroupCriterion = 
new BiddableAdGroupCriterion();
interestBiddableAdGroupCriterion.adGroupId = AdGroupId;
interestBiddableAdGroupCriterion.criterion = 
userInterestTarget;

AdGroupCriterionOperation 
interestBiddableAdGroupCriterionOperation = new AdGroupCriterionOperation();
interestBiddableAdGroupCriterionOperation.operand = 
interestBiddableAdGroupCriterion;
interestBiddableAdGroupCriterionOperation.@operator = 
Operator.ADD;

_operations.Add(interestBiddableAdGroupCriterionOperation);


What am i doing wrong?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/019208f3-4aae-408c-959b-ea928ac42216%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Some campaigns not retrieved by API

2018-05-07 Thread Arthur Balduini
Hello, I'm not an expert in Adwords, It's been 4 days since I started to 
learn and use it, so my question may be a little trivial, but I would 
really aprecciate some help!

I have two specific campaigns that are not being retrieved by the API when 
I try to generate a report using getSheetData. Although I can access the 
data from the UI, the reports generated by the UI  are missing this 
campaigns. The other campaigns are being retrieved as expected by the API, 
so I imagine it may not be a coding error.

Any suggestions and ideas would help me a lot! :)

Thanks in advance

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/c0c22052-3d85-41ed-bfd9-92573c22a634%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


custom columns in the API

2015-02-25 Thread Arthur
are there plans to make custom columns also available in the API?
Today, I have to download a report with clicks, impressions and then 
separately a report with conversions and conversionTypeName, flatten this 
table and then join it with the clicks,impression performance data. 
my target data is a flat table (as in the interface with custom columns) 
with cost, clicks, impressions and then for example customConversion1, 
customConversion2.



-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups AdWords 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 Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/c807e653-3cbd-41bf-b08e-5f167db02de8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: ClickAssistedConversions and ConversionTypeName not possible. Why?

2014-04-07 Thread Arthur
there is a difference between DURING  (the dates for which clicks are 
included) and the history window (30,60,90 days i.e., maximum span between 
click and conversion that is included for assisted conversions).
In the GUI I see only show complete conversions paths in the search 
funnel section for the  assisted conversions report there is a dropdown 
all paths.

The most important feature really is the breakdown by ConversionTypeName 
and I would be very very happy to see this.

On Monday, March 10, 2014 7:28:41 PM UTC+1, Ray Tsang (AdWords API Team) 
wrote:

 Arthur,

 There are certainly column combinations that cannot be selected at the 
 same time.  I'll note this down and relay the information.

 For Time frame - reports have the DURING clause to specify a time frame 
 - was that helpful for your use case?

 Lastly, could I trouble you to point me  in the GUI where you were seeing 
 the only show complete conversion paths?

 Thanks.

 Ray

 On Saturday, March 8, 2014 7:47:16 AM UTC-5, Arthur wrote:

 Cannot select a combination of ClickAssistedConversions and 
 AdFormat,AdGroupCreativeLabelId,AdvertiserExperimentId,ClickType,ConversionCategory,ConversionCategoryName,ConversionTypeId,ConversionTypeName,Device,Domain,EffectiveDestinationUrl,FeatureTypeId,FeatureValueId,GuessedCriteriaTypeName,MatchType,MediaId,Slot,SocialAnnotationType


 In the GUI I can filter the search funnels by ConversionTypeName and I think 
 that this feature is crucial. It does not make ssense to see the sum of 
 conversion types like registration, product view, add-to-cart, transactions 
 etc. or even the sum of imported GA and Adwords conversions.


 Plus, if I am using MCC conversion tracking are the numbers the API returns 
 cross-account?


 Also, time frame (30,60,90 days) and the Only show complete conversion 
 paths option seem to be missing.


 Are there any plans to change this or options to achieve this that I may be 
 missing?




-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups AdWords 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 Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Sitelink /placeholder feed item performance report problem

2014-04-03 Thread Arthur
Hi,

I am trying to get the performance of an ad depending on whether sitelinks 
appeared or not (for those impressions for which sitelinks were eligible). 
Apparently, I am doing it wrong / it isn't possible.

query = 
SELECT ExternalCustomerId, CampaignId, AdGroupId, AdId,
   Cost, Clicks, Impressions, Conversions, ConversionValue
FROM PLACEHOLDER_FEED_ITEM_REPORT
WHERE Slot = SearchTop AND PlaceholderType = 1
DURING 20140201,20140228

query = 
SELECT ExternalCustomerId, CampaignId, AdGroupId, Id,
   Cost, Clicks, Impressions, Conversions, ConversionValue
FROM AD_PERFORMANCE_REPORT
WHERE Slot = SearchTop
DURING 20140201,20140228

My logic was to subtract Impressions, Clicks, Cost etc from Query 1 from 
Query 2.
For some reason, overall Cost in the 1st query is higher than for the 2nd 
query.
How is this possible?
The description doesn't say that this is a multiple attribution report.

Best,

Arthur

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups AdWords 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 Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Documentation error for placeholder feed item report

2014-03-29 Thread Arthur
report description says:

To see the clicks/costs/etc. for just sitelink X, *use segment 
IsSelfAction,* and look at the This extension rows. To see a breakdown 
by type of click (e.g., headline vs. sitelink), use segment ClickType.

the table says: 
IsSelfActionThis extension vs. OtherthisExtensionVsOtherBooleanAttribute

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups AdWords 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 Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: CriterionError.KEYWORD_HAS_INVALID_CHARS

2014-03-10 Thread Arthur
Text of this keyword (at most 80 characters and ten words). This field can 
be selected using the value KeywordText. This field can be filtered on. This 
string must match the regular expression '[^\x00]*' This field is required 
and should not be null when it is contained within 
Operatorhttps://developers.google.com/adwords/api/docs/reference/v201309/AdGroupCriterionService.Operator.htmls
 
: ADD.

On Monday, March 10, 2014 12:36:56 PM UTC+1, Luca Fiaschi wrote:

 It would be great if somebody could point me out to a list of all invalid 
 characters and to the keyword size limits (maximum length in words).

 On Monday, March 10, 2014 11:38:49 AM UTC+1, Luca Fiaschi wrote:

 Hi all,
 it seems that some of my keywords have invalid characters,
 however I do not see any problem with their text.

 CriterionError.KEYWORD_HAS_INVALID_CHARS @ 
 operations[4935].operand.criterion.text; trigger:'d'tandoor (precint 10) 
 penang'

 coul anybody point me to the error?



-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups AdWords 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 Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


ClickAssistedConversions and ConversionTypeName not possible. Why?

2014-03-08 Thread Arthur


Cannot select a combination of ClickAssistedConversions and 
AdFormat,AdGroupCreativeLabelId,AdvertiserExperimentId,ClickType,ConversionCategory,ConversionCategoryName,ConversionTypeId,ConversionTypeName,Device,Domain,EffectiveDestinationUrl,FeatureTypeId,FeatureValueId,GuessedCriteriaTypeName,MatchType,MediaId,Slot,SocialAnnotationType


In the GUI I can filter the search funnels by ConversionTypeName and I think 
that this feature is crucial. It does not make ssense to see the sum of 
conversion types like registration, product view, add-to-cart, transactions 
etc. or even the sum of imported GA and Adwords conversions.


Plus, if I am using MCC conversion tracking are the numbers the API returns 
cross-account?


Also, time frame (30,60,90 days) and the Only show complete conversion paths 
option seem to be missing.


Are there any plans to change this or options to achieve this that I may be 
missing?


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups AdWords 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 Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Click performance report vs valuetrack parameters

2014-03-05 Thread Arthur
I see the click performance report as a more convenient way to tie session 
data to adwords sources than to use the valuetrack parameters.

Unfortunately, not all information is available here. Will that change in 
the near future? 

For example, I do not have the position of the ad available while this is a 
valuetrack option. Hence, I still have to use and parse the valuetrack 
parameters and tie them to the gclid.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups AdWords 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 Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Report Types Field descriptions have been removed from the documentation. Why?

2014-03-04 Thread Arthur
https://developers.google.com/adwords/api/docs/appendix/reports

There used to be the possible values available for segments.

For example ClickType and AdFormat had the possible values listed in a 
column.

This change is pretty annoying :)

Best regards,

Arthur

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups AdWords 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 Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Which reports return a Total row? (Keywordless category report for example does not)

2014-01-20 Thread Arthur
Until recently I assumed that all reports return a total row with 
aggregate statistics.
However, the keywordless category report does not. Is there a some 
systematic rule or documentation about which reports contain the summary 
row?


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups AdWords 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 Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Difference between AccountDescriptiveName and CustomerDescriptiveName

2013-12-05 Thread Arthur Gerigk
what is the difference between the two fields?

usually they coincide but it isn't always the case.


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups AdWords 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 Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


How do I replace CampaignService in v201309?

2013-11-19 Thread Arthur Pemberton
I don't see any migration samples for this.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups AdWords 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 Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: OAuth 2.0 error, while upgrading to newer version (i.e. v201306)

2013-11-19 Thread Arthur Pemberton
Why is it strongly discouraged? The OAuth2 examples are rarely equivalent.

On Sunday, July 28, 2013 7:05:47 AM UTC-4, Majo Mikula wrote:

 Keep in mind that ClientLogin API is deprecated, and its use is strongly 
 discouraged.
 See https://developers.google.com/accounts/docs/AuthForInstalledApps for 
 details.


 On Wednesday, 24 July 2013 17:37:26 UTC+2, CFJ wrote:

 I had the same problem on upgrade from v201209 to v201306.  Fixed it by 
 adding a key to the AdWordsApi section of my app.config to explicitly 
 utilize ClientLogin authentication.  


   AdWordsApi
 add key=AuthorizationMethod value=ClientLogin /
   /AdWordsApi




 On Wednesday, July 24, 2013 5:54:46 AM UTC-4, Atul wrote:

 I am getting an error of OAuth 2.0 authorization, while upgrading to 
 newer version (i.e. v201306) of AdWords API. Previously, I was using the 
 v201209 version of API and everything was working fine, but on July 22 
 v201209 was discontinued. So, I was upgrading to the newer version, but it 
 is giving me error. With v201209, I was not using any type of 
 authorization, it was simple Client Login, and I want to implement same 
 thing with v201306, but it is not working and needed OAuth 2.0 to 
 implement. I didn't make any changes in my existing application, just 
 replaced the reference of older version dll with newer dll. After changing 
 the references, I am getting this error:

  
 Value cannot be null.
 Parameter name: Looks like your application is not configured to use 
 OAuth2 properly. Required OAuth2 parameter RefreshToken is missing. You may 
 run Common\\Utils\\OAuth2TokenGenerator.cs to generate a default OAuth2 
 configuration.
  
 Please help me in resolving this issue.



-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups AdWords 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 Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Accessing the account changes - how can I get the email address of the login that made the change?

2013-01-21 Thread Arthur Gerigk
are there any plans to include this?

Am Montag, 23. Januar 2012 19:54:34 UTC+1 schrieb Kevin Winter:

 Hi,
   Unfortunately, who made a change is not currently exposed via the 
 CustomerSyncService.

 - Kevin Winter
 AdWords API Team

 On Tuesday, January 17, 2012 3:28:19 PM UTC-5, Ty.Roden wrote:

 Using the get_account_changes.pl example application (in Perl) and 
 examining the documentation for the API I cannot seem to find how to 
 access the change information that will allow me to poll the account 
 login that made each particular change? 

 Within the Adwords UI I can see when different logins have made 
 specific changes and I would like to reference *who* made each change 
 if possible. Am I missing this functionality somewhere? 

 If it is possible to accomplish, and any Perl coders have a quick 
 example that would be great. 

 Thank you. 



-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups AdWords 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





Re: No SearchBudgetLostImpressionShare in ad group performance report

2013-01-17 Thread Arthur Gerigk
But why is BudgetLostImpressionShare available on ad group level, just not
the new search / content variants ? Also , you can quantify how many
impressions an ad group could have  had after the campaign ran out of money.
Am 17.01.2013 08:45 schrieb Takeshi Hagikura (AdWords API Team) 
adwordsapiadvisor+take...@google.com:

 Hi pete,

 ContentBudgetLostImpressionShare, SearchBudgetLostImpressionShare are not
 available for AdGroup Performance Report as Budgets can not be set ad
 AdGroup level.
 Those columns are only available for Account Performance Report, and
 Campaign Performance Report.
 Will correct the blog post.

 Best,
 - Takeshi, AdWords API Team


 On Wednesday, January 16, 2013 10:37:20 PM UTC+9, pete wrote:

 Hi Paul

 As you pointed out, the API documentation does not mention 
 SearchBudgetLostImpressionSha**re nor whereas the blog post http://**
 googleadsdeveloper.blogspot.**co.uk/2012/12/impression-**
 share-reporting-changes.htmlhttp://googleadsdeveloper.blogspot.co.uk/2012/12/impression-share-reporting-changes.htmlspecifically
  mentions all the new IS columns (including 2 columns relating
 to Budget).

 Requesting the columns as specified in the Blog throws...

 *reportDownloadError*
 * ApiError*
 * typeReportDefinitionError.INVALID_FIELD_NAME_FOR_REPORT/type*
 * trigger/*
 * fieldPathContentBudgetLostImpressionShare/fieldPath*
 * /ApiError*
 */reportDownloadError*
 *
 *
 *
 *
 *reportDownloadError*
 * ApiError*
 * typeReportDefinitionError.INVALID_FIELD_NAME_FOR_REPORT/type*
 * trigger/*
 * fieldPathSearchBudgetLostImpressionShare/fieldPath*
 * /ApiError*
 */reportDownloadError*


 Are these columns going to show up in the API?

 pete


 On Wednesday, 16 January 2013 10:51:04 UTC, Paul Matthews (AdWords API
 Team) wrote:

 Hi Arthur,

 The report type 
 definitionshttps://developers.google.com/adwords/api/docs/appendix/reportslists
  all the data we have available, if a column doesn't exist, it's
 because we don't store that data.

 If you include columns that don't exist in the report, it responds with
 an error.

 Regards,

 - Paul, AdWords API Team.

 On Tuesday, 15 January 2013 15:00:01 UTC, Arthur Gerigk wrote:

 Asking for this column results in an error of the api and also
 https://developers.**google.com/adwords/api/docs/**
 appendix/reports?hl=en#ad-**grouphttps://developers.google.com/adwords/api/docs/appendix/reports?hl=en#ad-group
 doesn't contain it.

 Is there any reason for this?

  --
 --
 =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
 Also find us on our blog and discussion group:
 http://adwordsapi.blogspot.com
 http://groups.google.com/group/adwords-api
 =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

 You received this message because you are subscribed to the Google
 Groups AdWords 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





-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups AdWords 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





No SearchBudgetLostImpressionShare in ad group performance report

2013-01-15 Thread Arthur Gerigk
Asking for this column results in an error of the api and also 
https://developers.google.com/adwords/api/docs/appendix/reports?hl=en#ad-group  
doesn't contain it.

Is there any reason for this?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups AdWords 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





Re: Which fields are available in the CLICK_PERFORMANCE_REPORT ?

2012-07-02 Thread Arthur Gerigk
I don't know how to do this without a client library. Is there a ressource 
that explains it which works with v201206 ? 

http://code.google.com/p/google-api-ads-python/wiki/AdWordsNoClientLibrary  
seems to be outdated (the wsdl2py call fails).



Am Montag, 2. Juli 2012 02:52:19 UTC+2 schrieb jstedman:

 Try using a ReportDefinitionService getReportFields call:


 https://developers.google.com/adwords/api/docs/reference/latest/ReportDefinitionService#getReportFields


-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups AdWords 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


Which fields are available in the CLICK_PERFORMANCE_REPORT ?

2012-06-30 Thread Arthur Gerigk
Since v201206 isn't supported by the client libraries yet I was using the 
no-client library to fetch some data from this new report type.
Unfortunately, I did not find any information about which fields are there 
(so far I found campaign id , adgroup id and click! id, together with slot 
and clicktype).
So, which fields can I include here? Also, the new query language does not 
support select * from report_type to find this out.

A second question would be when we can expect the client libraries for 
v201206

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups AdWords 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