Re: find gclid using campaign id

2024-05-19 Thread D. H.
And with apologies for missing the 90 days part, as well as limiting 
results to one day, you cannot fetch results older than 90 days.

This query returns an error for me:
SELECT click_view.gclid, campaign.id FROM click_view WHERE segments.date = 
'2024-02-01'

GoogleAdsException: (<_SingleThreadedRendezvous of RPC that terminated 
with: status = StatusCode.INVALID_ARGUMENT details = "Request contains an 
invalid argument." debug_error_string = "UNKNOWN:Error received from peer 
ipv4:xxx.xxx.xxx.xx:xxx {created_time:"2024-05-20T09:30:00.00+00:00", 
grpc_status:3, grpc_message:"Request contains an invalid argument."}" >, 
<_SingleThreadedRendezvous of RPC that terminated with: status = 
StatusCode.INVALID_ARGUMENT details = "Request contains an invalid 
argument." debug_error_string = "UNKNOWN:Error received from peer 
ipv4:xxx.xxx.xxx.xx:xxx {created_time:"2024-05-20T09:30:00.00+00:00", 
grpc_status:3, grpc_message:"Request contains an invalid argument."}" >, 
errors { error_code { request_error: UNKNOWN } message: "The requested date 
is too old. It cannot be older than 90 days." } request_id: "
xx"
, 'xx')

D.H.
On Saturday, May 18, 2024 at 6:22:10 AM UTC+8 bhavya dev wrote:

> Hi,
>
> I've already posted error which I'm facing to fetch data older than 90 
> days actually I can able to fetch campaign impression, ctr, clicks etc.. 
> detail which older than 90 days.
>
> I'm fetching my campaign detail 
>
> below query I've used to fetch campaign details :-
> SELECT 
> campaign.name, 
> campaign_budget.amount_micros, 
> campaign.status, 
> campaign.optimization_score, 
> campaign.advertising_channel_type, 
> metrics.clicks, 
> metrics.impressions, 
> metrics.ctr, 
> metrics.average_cpc, 
> campaign.bidding_strategy_type, 
> metrics.cost_micros
> FROM campaign 
>   WHERE segments.date BETWEEN '{start_date}' AND 
> '{end_date}'
>
> So when i try to fetch gclid with "SELECT click_view.gclid, campaign.id 
> FROM click_view WHERE segments.date BETWEEN '2022-10-01' AND '2022-10-30' 
> AND campaign.id = 14529401748" this query getting error [Queries 
> including ClickView must have a filter limiting the results to one day]. 
>
> I want to fetch gclid such like this , please give me solution to resolve 
> this error.
> On Thursday 16 May 2024 at 22:03:11 UTC+5:30 Google Ads API Forum Advisor 
> wrote:
>
>> Hi,
>>
>> Thank you for reaching out to the Google Ads API support team.
>>
>> Please refer to this Rest API endpoint : 
>> https://developers.google.com/google-ads/api/rest/reference/rest/v16/customers.googleAds/searchStream
>>
>> Also, kindly try the below provided query to get the GCLID using campaign 
>> id.
>>
>> Query : "SELECT click_view.gclid, campaign.id FROM click_view WHERE 
>> segments.date = '2024-05-16' AND campaign.id = 123456789"
>>
>> You may use this Google Ads Query Builder 
>> <https://developers.google.com/google-ads/api/fields/v16/click_view_query_builder>
>>  
>> to build your own query with the click_view 
>> <https://developers.google.com/google-ads/api/fields/v16/click_view> 
>> resource.
>>
>> Hope this helps. If you have any more queries, please feel free to get 
>> back to us.
>>   
>> This message is in relation to case 
>> "ref:!00D1U01174p.!5004Q02tJ01J:ref" (ADR-00235302)
>>
>> Thanks,
>>   
>> [image: Google Logo] Google Ads API Team 
>>
>>
>>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/cd7d14dd-aa49-44a9-a3ec-e8a4c13e54bbn%40googlegroups.com.


Re: find gclid using campaign id

2024-05-19 Thread D. H.
Hi,

You need to include a filter to limit the results to a single day.

This query works for me:
SELECT click_view.gclid, campaign.id FROM click_view WHERE segments.date = 
'2024-05-01'

As does this:
SELECT click_view.gclid, campaign.id FROM click_view WHERE segments.date 
BETWEEN '2024-05-01' AND '2024-05-01'

But if I extend it to even two days I return the same error you have:
SELECT click_view.gclid, campaign.id FROM click_view WHERE segments.date 
BETWEEN '2024-05-01' AND '2024-05-02'

GoogleAdsException: (<_SingleThreadedRendezvous of RPC that terminated 
with: status = StatusCode.INVALID_ARGUMENT details = "Request contains an 
invalid argument." debug_error_string = "UNKNOWN:Error received from peer 
ipv4:xxx.xx.xxx.xxx:xxx {created_time:"2024-05-20T09:30:00.00+00:00", 
grpc_status:3, grpc_message:"Request contains an invalid argument."}" >, 
<_SingleThreadedRendezvous of RPC that terminated with: status = 
StatusCode.INVALID_ARGUMENT details = "Request contains an invalid 
argument." debug_error_string = "UNKNOWN:Error received from peer 
ipv4:xxx.xx.xxx.xxx:xxx {created_time:"2024-05-20T09:30:00.00+00:00", 
grpc_status:3, grpc_message:"Request contains an invalid argument."}" >, 
errors { error_code { request_error: UNKNOWN } message: "Queries including 
ClickView must have a filter limiting the results to one day." } 
request_id: "xx" , 'xx')

Hope this helps,

D.H.

On Saturday, May 18, 2024 at 6:22:10 AM UTC+8 bhavya dev wrote:

> Hi,
>
> I've already posted error which I'm facing to fetch data older than 90 
> days actually I can able to fetch campaign impression, ctr, clicks etc.. 
> detail which older than 90 days.
>
> I'm fetching my campaign detail 
>
> below query I've used to fetch campaign details :-
> SELECT 
> campaign.name, 
> campaign_budget.amount_micros, 
> campaign.status, 
> campaign.optimization_score, 
> campaign.advertising_channel_type, 
> metrics.clicks, 
> metrics.impressions, 
> metrics.ctr, 
> metrics.average_cpc, 
> campaign.bidding_strategy_type, 
> metrics.cost_micros
> FROM campaign 
>   WHERE segments.date BETWEEN '{start_date}' AND 
> '{end_date}'
>
> So when i try to fetch gclid with "SELECT click_view.gclid, campaign.id 
> FROM click_view WHERE segments.date BETWEEN '2022-10-01' AND '2022-10-30' 
> AND campaign.id = 14529401748" this query getting error [Queries 
> including ClickView must have a filter limiting the results to one day]. 
>
> I want to fetch gclid such like this , please give me solution to resolve 
> this error.
> On Thursday 16 May 2024 at 22:03:11 UTC+5:30 Google Ads API Forum Advisor 
> wrote:
>
>> Hi,
>>
>> Thank you for reaching out to the Google Ads API support team.
>>
>> Please refer to this Rest API endpoint : 
>> https://developers.google.com/google-ads/api/rest/reference/rest/v16/customers.googleAds/searchStream
>>
>> Also, kindly try the below provided query to get the GCLID using campaign 
>> id.
>>
>> Query : "SELECT click_view.gclid, campaign.id FROM click_view WHERE 
>> segments.date = '2024-05-16' AND campaign.id = 123456789"
>>
>> You may use this Google Ads Query Builder 
>> <https://developers.google.com/google-ads/api/fields/v16/click_view_query_builder>
>>  
>> to build your own query with the click_view 
>> <https://developers.google.com/google-ads/api/fields/v16/click_view> 
>> resource.
>>
>> Hope this helps. If you have any more queries, please feel free to get 
>> back to us.
>>   
>> This message is in relation to case 
>> "ref:!00D1U01174p.!5004Q02tJ01J:ref" (ADR-00235302)
>>
>> Thanks,
>>   
>> [image: Google Logo] Google Ads API Team 
>>
>>
>>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/3fb24a86-5141-4e10-b4f2-a4fea5277309n%40googlegroups.com.


Request for Basic auth not response in weeks

2024-05-06 Thread Matt D
Hi
I Submitted a request for basic Google Ads API access weeks ago and still 
didn't get any response. I requested again 4 days ago and still nothing. 
Please help. Thanks

Case ID - Don't have one
Google Ads Manager Account (MCC) ID -  713-613-2254

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/16ab8919-90a3-4d5a-86dc-88fc7260c3c6n%40googlegroups.com.


Re: Google Ads API header_error: INVALID_LOGIN_CUSTOMER_ID

2024-04-23 Thread D. H.


"The login customer id header \\\'Optional[XXX-XXX-]\\\' could not be 
validated." 


If you're passing in the customer ID value with hyphens like "111-222-" 
you need to pass without for the API: "111222".

D.H.
 

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/b4cbd7af-b916-4473-831d-fd241d554da1n%40googlegroups.com.


help with my ads

2024-02-29 Thread S D
Hello
someone from google team created an ad for me
I told him I had €50 per day
  except that after 24 hours there are only 28 impressions and zero clicks, 
is that catastrophic?


Can someone help me understand what is wrong with my ads or has the 
campaign been set up correctly?


THANKS
Cyril
(from France)

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/85a9fd70-6708-4136-8a1b-160604c8b260n%40googlegroups.com.


Re: google ads: api center - basic access request

2024-02-26 Thread Darko D
Hi 

I want to follow up on this.

Thank you

On Wednesday, February 21, 2024 at 4:02:23 AM UTC+8 Google Ads API Forum 
Advisor wrote:

> Hi,
>
> Thank you for reaching out to the Google Ads API support team.
>
> After reviewing your concern, I understand that you have applied for API 
> basic access and haven't received any updates on your application status.
>
> Since the access requests are handled by the Google Ads API Compliance 
> team, we are transferring the case to the Ads API Compliance team. 
>
> @Compliance team, please confirm if you are able to assist in the below 
> access request.
>
> Summary: The user has applied for API access with the below details.
>
>- Google Ads Manager Account (MCC) ID: 911-037-9480 
>- Case ID: Not assigned 
>- Access type: Basic 
>
> Do reach out to the Google Ads API support team 
> <https://developers.google.com/google-ads/api/docs/start> for any queries 
> related to the API. 
> This message is in relation to case "ref:!00D1U01174p.!5004Q02rzH8M:ref"
>
> Thanks,
>   
> [image: Google Logo] Google Ads API Team 
>
>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/ef33063a-fca2-4153-a0c1-d419186b585bn%40googlegroups.com.


Google Ads: API Center - Basic Access Request

2024-02-20 Thread Darko D
Hi,

I've submitted an application to obtain basic access to the Ads API but 
haven't gotten any feedback from the support team. Additionally, I've 
followed up multiple times to Google Ads API Compliance team, yet I've 
still not received any communication from them.

MCC: 911-037-9480
Case-ID: Not assigned

I would appreciate it if you could look into my case and let me know when 
you expect a response from Google.

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/b5f7760a-54f3-4607-b09e-f098a8215842n%40googlegroups.com.


Re: Exponential/scientific notation for DUOBLE fields

2024-02-15 Thread D. H.
Hi,

Using the python client library I get values returned as "normal" floats 
like "0.9605413375709904" for campaign optimization score, from the 
campaign query report.

Is it possible something in your process is converting/interpreting the 
number in scientific notation? What does the initial raw response look like?

Regards,

D.H.

On Saturday, February 10, 2024 at 3:15:39 PM UTC+8 Oksana Sulyma wrote:

> Hi Google Ads API team!
>
> We pull 
> https://developers.google.com/google-ads/api/fields/v15/campaign#campaign.optimization_score
>  
> field from API and got some values in 
> scientific notation, as example 1.4210854715202E-14. 
>
> Documentation says field format is DOUBLE, but I can't find anything in 
> documentation that says that DOUBLE can be in exponential/scientific 
> notation.
>
> Could you please confirm that this is expected API behavior - to return 
> values in exponential format for fields declared as  DOUBLE ? 
>
> If so, what field formats could be impacted by this (whether it's some of 
> the DOUBLE fields, all of them, DOUBLE and other field types, etc.)?
>
> I'll be happy to provide additional details on request / response 
> privately if needed.
>
> Thanks,
> Oksana
>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/a67b836d-9b0b-4739-9b14-fc9ff269dec4n%40googlegroups.com.


Label Service in Google Ads API

2024-02-12 Thread Hemalatha D
I'm using xml schema to createLabels. but, getting error HTTP Status Code: 
500
To createLabel, do we need to enable permission, if yes, could you please 
enable it from your end.

Networkcode- 133009657
ApplicationName- Nine Digital (Production)


http://schemas.xmlsoap.org/soap/envelope/;
xmlns:xsd="http://www.w3.org/2001/XMLSchema;
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance;>
  
http://schemas.xmlsoap.org/soap/actor/next;
soapenv:mustUnderstand="0"
 xmlns:ns1=[gamApiVersion]>
[networkCode]
  [applicationName]

  
   
  
   
[labelName]  
[labelType]
 
  
   


=

Internal : Unexpected error Error during Web API HTTP Request
HTTP Status Code: 500
HTTP Response Content: http://schemas.xmlsoap.org/soap/envelope/;>https://www.google.com/apis/ads/publisher/v202311;>b85bb2d0c1a5f2c3882d45d6c594506soap:Server[PermissionError.PERMISSION_DENIED
 
@ ]https://www.google.com/apis/ads/publisher/v202311;>[PermissionError.PERMISSION_DENIED
 
@ ]http://www.w3.org/2001/XMLSchema-instance; 
xsi:type="PermissionError">PermissionError.PERMISSION_DENIEDPERMISSION_DENIED

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/f6b61a01-ea28-4862-8423-b4939963e7b4n%40googlegroups.com.


LabelService | createLabels

2024-02-12 Thread Hemalatha D
I'm using xml schema to createLabels. but, getting error HTTP Status Code: 
500
To createLabel, do we need to enable permission, if yes, could you please 
enable it from your end.

Networkcode- 133009657
ApplicationName- Nine Digital (Production)


http://schemas.xmlsoap.org/soap/envelope/;
xmlns:xsd="http://www.w3.org/2001/XMLSchema;
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance;>
  
http://schemas.xmlsoap.org/soap/actor/next;
soapenv:mustUnderstand="0"
 xmlns:ns1=[gamApiVersion]>
[networkCode]
  [applicationName]

  
   
  
   
[labelName]  
[labelType]
 
  
   


=

Internal : Unexpected error Error during Web API HTTP Request
HTTP Status Code: 500
HTTP Response Content: http://schemas.xmlsoap.org/soap/envelope/;>https://www.google.com/apis/ads/publisher/v202311;>b85bb2d0c1a5f2c3882d45d6c594506soap:Server[PermissionError.PERMISSION_DENIED
 
@ ]https://www.google.com/apis/ads/publisher/v202311;>[PermissionError.PERMISSION_DENIED
 
@ ]http://www.w3.org/2001/XMLSchema-instance; 
xsi:type="PermissionError">PermissionError.PERMISSION_DENIEDPERMISSION_DENIED

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/09c0ab34-aea8-4fc2-902e-da19aa80cfb1n%40googlegroups.com.


Re: ad account campaign metrics total

2024-01-05 Thread Bryann D. R.
Thank you for your reply, however the query retrieved total metrics per 
campaign, is there a possibility to retrieved the total percentage of 
'search impression share' of all campaign?



On Friday 5 January 2024 at 13:48:08 UTC+8 Google Ads API Forum Advisor 
wrote:

> Hi,
>
> Thank you for getting back to us.
>
> By reviewing your concern, I understand that you are trying to retrieve 
> total metrics for 'Search Impression Share', 'Search Lost Rank', 'Search 
> Lost Budget' and others but you are unable to retrieve them via the 
> *campaign* 
> <https://developers.google.com/google-ads/api/fields/v15/campaign_query_builder>
>  
> resource from the Google Ads API. 
>
> Please find the sample GAQL query for retrieving the requested metrics:
>   
>
>
> SELECT metrics.search_impression_share, 
> metrics.search_rank_lost_impression_share, 
> metrics.search_budget_lost_impression_share, metrics.video_view_rate, 
> metrics.search_top_impression_share, 
> metrics.search_absolute_top_impression_share FROM campaign
>
>
> Additionally, you can utilize the *Google Ads Query Builder* 
> <https://developers.google.com/google-ads/api/fields/v14/overview_query_builder>
>  
> and *Query Validator* 
> <https://developers.google.com/google-ads/api/fields/v14/query_validator> 
> to build and validate the queries for retrieving the data from the Google 
> Ads API. 
>
> I hope this helps. Kindly get back to us if you have any further questions 
> related to the Google Ads API.
>
>   
> This message is in relation to case "ref:!00D1U01174p.!5004Q02r5NWt:ref"
>
> Thanks,
>   
> [image: Google Logo] Google Ads API Team 
>
>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/bd37ffee-51f8-4fe3-b017-405cd756b354n%40googlegroups.com.


Re: ad account campaign metrics total

2024-01-04 Thread Bryann D. R.
Thank you for your response. What about the total campaign metrics per ad 
account? Is it possible? Like  'Search Impression Share', 'Search Lost 
Rank', 'Search Lost Budget', please see the screenshot.

On Friday 5 January 2024 at 00:00:44 UTC+8 Google Ads API Forum Advisor 
wrote:

> Hi,
>
> Thank you for reaching out to the Google Ads API support team.
>
> By reviewing your query, I understand that you have few concerns related 
> to the campaign metrics. According to the API documentation, 
> auction_insight_search impression_share 
> <https://developers.google.com/google-ads/api/fields/v14/metrics#metrics.auction_insight_search_impression_share>
>  metric 
> is not publicly available.
>
> Unfortunately, the allowlist for this particular feature is currently 
> closed, so we're unable to add new people to have access at this time.
>   
> This message is in relation to case "ref:!00D1U01174p.!5004Q02r5NWt:ref"
>
> Thanks,
>   
> [image: Google Logo] Google Ads API Team 
>
>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/327000bb-b4fe-4219-b79d-4c72c2bf409an%40googlegroups.com.


Re: Error on getting Metrics from Asset_group

2023-11-21 Thread D. H.
Hi, 

Are you using v15 of the API or an earlier version? Looks like metrics for 
asset groups were added in 
v15: 
https://ads-developers.googleblog.com/2023/10/announcing-v15-of-google-ads-api.html

And: https://developers.google.com/google-ads/api/fields/v15/asset_group

I get a similar error running your query against v14 with the Python client:
[2023-11-21 17:00:00,000 - WARNING] Request made: ClientCustomerId: 
xx, Host: googleads.googleapis.com, Method: 
/google.ads.googleads.v14.services.GoogleAdsService/SearchStream, 
RequestId: XXX_X-, IsFault: True, FaultMessage: Cannot 
select or filter on the following metrics: 'all_conversions'(could not 
support requested resources: 'ASSET_GROUP'), 'all_conversions_value'(could 
not support requested resources: 'ASSET_GROUP'), 'clicks'(could not support 
requested resources: 'ASSET_GROUP'), 'conversions'(could not support 
requested resources: 'ASSET_GROUP'), 'cost_micros'(could not support 
requested resources: 'ASSET_GROUP'), 'impressions'(could not support 
requested resources: 'ASSET_GROUP'), 'interactions'(could not support 
requested resources: 'ASSET_GROUP'), 'view_through_conversions'(could not 
support requested resources: 'ASSET_GROUP'), since metric is incompatible 
with the resource in the FROM clause or other selected segmenting 
resources. 

Hope this helps,

D.H.
On Tuesday, November 21, 2023 at 12:09:43 AM UTC+8 Cantare John wrote:

> In docs, it is noted that ASSET_GROUP is RESOURCE WITH METRICS but when im 
> trying to get metrics with this query
> *{*
> * "query": "SELECT campaign.id <http://campaign.id>, asset_group.id 
> <http://asset_group.id>, metrics.all_conversions, 
> metrics.all_conversions_value, metrics.clicks, 
> metrics.conversions,metrics.cost_micros, metrics.impressions, 
> metrics.interactions, metrics.view_through_conversions FROM asset_group"*
> *}*
> Im getting this error 
>
>
> * "errors": [  {*
>
> * "errorCode": {*
>
>
>
> * "queryError": "PROHIBITED_METRIC_IN_SELECT_OR_WHERE_CLAUSE" 
> },"message": "Cannot select or filter on the following 
> metrics: 'all_conversions'(could not support requested resources: 
> 'ASSET_GROUP'), 'all_conversions_value'(could not support requested 
> resources: 'ASSET_GROUP'), 'clicks'(could not support requested resources: 
> 'ASSET_GROUP'), 'conversions'(could not support requested resources: 
> 'ASSET_GROUP'), 'cost_micros'(could not support requested resources: 
> 'ASSET_GROUP'), 'impressions'(could not support requested resources: 
> 'ASSET_GROUP'), 'interactions'(could not support requested resources: 
> 'ASSET_GROUP'), 'view_through_conversions'(could not support requested 
> resources: 'ASSET_GROUP'), since metric is incompatible with the resource 
> in the FROM clause or other selected segmenting resources."  } ],**RequestId 
> : *JWMpCN21dJv2UObgdEAfyQ
>
>
>
>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/52071061-4e3e-445c-958a-d3a659b675dbn%40googlegroups.com.


Re: Mutating Ad by specifying ad_id and ad_group_id / campaign_id

2023-10-29 Thread D. H.
Hi,

I've run into the same issue when creating Campaign Experiments. There are 
two states with three different campaigns with different results.

Let's consider this to be our BASE campaign: 
customers/1234567890/campaigns/2345678901. This campaign will have a 
campaign.experiment_type field value of "BASE".

*1) Campaign Experiment Status = SETUP*
This campaign will have a campaign.experiment_type of "UNKNOWN" and it will 
have an extra long resource name, e.g., 
customers/1234567890/campaigns/223344556678901.

   - In this state the campaign and ad group resource names (and IDs) have 
   different values from the BASE campaign.
   - But the ad resource names (and IDs) have the *same values* as the BASE 
   campaign.
   - So you cannot mutate the experiment ad without mutating the base ad 
   because as you've found the API call only uses the ad resource name which 
   is identical to the BASE ad resource name.
   - You might not even be able to update the experiment ad in the UI at 
   this point without updating the BASE ad
   - In this state the only thing you can do to update an ad is to delete 
   it (which also requires the ad group ID also) and then re-create the ad 
   with whatever items are updated in the experiment campaign and ad group.
   - Incidentally, for search ads, the keyword resource names are also the 
   same here but, for whatever reason, the keyword mutate does require the ad 
   group ID, so you don't run into the same issue and can mutate to update 
   keywords.
   

*2) Campaign Experiment Status = INITIATED/ENABLED*
Once you've initiated/enabled the experiment a third campaign will be 
created with a campaign.experiment_type of "EXPERIMENT" and it will have an 
"normal" length resource name, e.g., 
customers/1234567890/campaigns/3456789012.

   - In this state the ad and keyword resource names (and IDs) are 
   different so you can use a normal method to mutate the experiment ad 
   without affecting the BASE ad.
   - This can still be before the experiment start date so you don't need 
   to wait until the experiment is actually in-progress before mutating the 
   ads, just that the experiment is enabled.
   

A final note is if you run the campaign report with PARAMETERS 
include_drafts = true' set  you'll see the three campaigns returned – BASE, 
UNKNOWN, and EXPERIMENT – even once the experiment is enabled. But at this 
point any mutates should be to the objects in the EXPERIMENT campaign, not 
the UNKNOWN one.

Hope this helps,

D.H.

On Saturday, October 28, 2023 at 4:27:44 AM UTC+8 Mamoru Miura wrote:

> Dear support team,
>
> I have a responsive search ad and want to mutate its text (headlines and 
> descriptions). I also use the campaign test feature, which duplicates the 
> ad, and there are two ads whose ad_id is the same.
>
> I want to mutate only one ad (and remain the other). I think it's possible 
> to do so by specifying not only ad_id but also other identifiers (e.g. 
> ad_group_id or campaign_id). Generally, it is recommended to use AdService 
> and AdOperation to mutate an ad, but they take only ad_id and account_id as 
> parameters, which is not enough to distinguish the two ads. I found 
> AdGroupAdService but it seems not to be able to mutate any ad (refer to 
> https://groups.google.com/g/adwords-api/c/90KwjMr2CnA). What can I do to 
> achieve my goal?
>
> Best regards,
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/c42a8792-0f46-4cdb-a1af-3cfe6157a2d1n%40googlegroups.com.


Re: forecast_period: The end time is invalid.

2023-10-29 Thread D. H.
is invalid.",
> "location": {
> "fieldPathElements": [
> {
> "fieldName": "forecast_period"
> }
> ]
> }
> }
> ],
> "requestId": "FTTj4N4F7MT1HS5JmoTL2Q"
> }
> ]
> } 
>
>
>
>
> [2023-10-25 10:50:25] local.DEBUG: DateRange:   
> [2023-10-25 10:50:25] local.DEBUG: 2023-10-26  
> [2023-10-25 10:50:25] local.DEBUG: 2024-10-26  
> [2023-10-25 10:50:25] local.DEBUG: {
> "message": "Request contains an invalid argument.",
> "code": 3,
> "status": "INVALID_ARGUMENT",
> "details": [
> {
> "@type": "type.googleapis.com
> \/google.ads.googleads.v14.errors.GoogleAdsFailure",
> "errors": [
> {
> "errorCode": {
> "requestError": "UNKNOWN"
> },
> "message": "The end time is invalid.",
> "location": {
> "fieldPathElements": [
> {
> "fieldName": "forecast_period"
> }
> ]
> }
> }
> ],
> "requestId": "WX1tgnEnRZC5L9kBjIEpZQ"
> }
> ]
> }  
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/3bbfc5e0-5d51-4df0-863e-4c42609966b4n%40googlegroups.com.


Re: Applying for basic access token results in Sorry, try again later.

2023-01-17 Thread ANA D.
ANA MARIA DUNZER

Em terça-feira, 17 de janeiro de 2023 às 13:09:03 UTC-3, adsapi escreveu:

> Hi Stefan,
>
> Our team understands the inconvenience you are encountering due to this 
> issue with getting a basic access token.
>
> Could you confirm which form it is you are referring to? Is it the basic 
> access application form 
> <https://support.google.com/adspolicy/contact/new_token_application> or 
> the Compliance Team contact form 
> <https://support.google.com/adspolicy/contact/contact_ads_api>?
>
> Best regards,
>
> [image: Google Logo] 
> Peter Laurence 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q2hzCwC: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 
"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/bbf0b883-26fb-4b95-bfce-e58bff1f6e5dn%40googlegroups.com.


Campaing criteria query does not produce data from Shopping campaigns

2023-01-12 Thread Cesar D.
I'm trying to get all campaign criteria in my account using the following 
query:

SELECT campaign_criterion.criterion_id, campaign.id, campaign.name, 
campaign.advertising_channel_type
FROM campaign_criterion
WHERE
campaign_criterion.type = 'LANGUAGE'
AND campaign_criterion.negative = FALSE
AND campaign_criterion.status = 'ENABLED'

Unfortunately the results do not include any criteria related to Shopping 
campaigns. Is this because an API limitation? How can I obtain the missing 
Shopping campaign criteria?

Thank you!

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/a2c3a669-b70e-45de-aa73-5512d2218485n%40googlegroups.com.


Re: I want to get user list usage status in Google Ads API

2022-08-11 Thread Roy D.
Thank you support team!

When do you think it will be ready. It was working on v7 and it's now not 
working which is problematic for our new application.

I have userList id but I  want to get userList by Id to get the size of the 
userList.

Thank you

On Wednesday, August 10, 2022 at 8:09:37 AM UTC-4 adsapi wrote:

> Hi Mina,
>
> Thank you for the reply. Allow me to assist you here.
>
> As of now, getting the Usage status is not available with Google Ads API, 
> However, I’ve raised a feature request for this to my team. With this, I 
> would suggest keeping an eye on this blog 
> <https://ads-developers.googleblog.com/> as we will post any relevant 
> updates when they become supported.
>
> Let us know if you have any further questions.
>
>
> Best regards,
> [image: Google Logo] 
> Anthony Cyril 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q2dJBKY: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 
"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/df39ace1-6134-464f-9352-d5e381d5851bn%40googlegroups.com.


Re: I want to get user list usage status in Google Ads API

2022-08-10 Thread Roy D.
https://developers.google.com/google-ads/api/rest/reference/rest/v11/customers.userLists

How can we get the userList by id? It see only mutate but I dont see get. 

Thank you for your help.

On Wednesday, August 10, 2022 at 2:20:30 AM UTC-4 adsapi wrote:

> Hi Kume,
>
> Thank you for reaching us out. I am Sherwin from Google Ads API support 
> team. I hope that you are doing well today.
>
> Moving forward to your concern, could you please tell us more about the 
> report that you want to pull up using the API? Add to that, could you 
> please provide us some screenshots of the UI where you can see the usage 
> status of the user list? You can provide it via Reply privately to the 
> author option. If this option is not available, then send it instead on 
> this email address *googleadsa...@google.com*.
>
> Kind regards, 
> [image: Google Logo] 
> Sherwin Vincent 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q2dJBKY: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 
"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/33b85fae-d2cb-4e63-8437-02e7617b339bn%40googlegroups.com.


Re: video Campaign in google ads API

2022-06-10 Thread Krishnadas D
Thank you for the clarification.
On Friday, June 10, 2022 at 2:12:52 PM UTC+5:30 adsapi wrote:

> Hello,
>
> As discussed here 
> <https://developers.google.com/google-ads/api/docs/campaigns/overview#differences_from_the_google_ads_ui>,
>  
> video campaign management is not currently supported in the API; thus, you 
> cannot perform mutate operations on video campaigns, which is why your API 
> request is failing.
>
> You can still retrieve video campaign metrics via the API, though.
>
> As for your following questions, this feature is not in beta and does not 
> depend on the access level of your developer token: it is just not 
> supported by the API at all.
>
> Sorry for the inconvenience.
>
> Thanks,
>
> Mattia Tommasone
> Google Ads API Team
>
> ref:_00D1U1174p._5004Q2b6QOz: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 
"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/424fbc14-903e-4a9e-b581-9477d91922ecn%40googlegroups.com.


video Campaign in google ads API

2022-06-10 Thread Krishnadas D
Hi
i am trying to create video campaign using google ads API  by referencing  
https://developers.google.com/google-ads/api/reference/rpc/v10/Campaign this 
document 
and also i  refered  channel type video 
https://developers.google.com/google-ads/api/reference/rpc/v10/AdvertisingChannelTypeEnum.AdvertisingChannelType
 in 
here 

but when i create my campaign i am getting error like this
[ GoogleAdsError { error_code: ErrorCode { operation_access_denied_error: 6 
}, message: 'A mutate action is not allowed on this resource, from this 
client.', trigger: Value { string_value: 'VIDEO' }, location: ErrorLocation 
{ field_path_elements: [Array] } } ]

and my code is 

const customer = await this.client.Customer({
customer_id: customerId,
login_customer_id: mcc_id,
refresh_token: refreshToken,
});

const budgetResourceName = ResourceNames.campaignBudget(
customer.credentials.customer_id,
"-1"
);

const operations: MutateOperation[] = [
{
entity: "campaign_budget",
operation: "create",
resource: {
// Create a budget with the temporary resource id
resource_name: budgetResourceName,
name: subcampaign.name + "-budget",
delivery_method: enums.BudgetDeliveryMethod.STANDARD,
amount_micros: toMicros(subcampaign.budget),
},
},
{
entity: "campaign",
operation: "create",
resource: {
name: subcampaign.name,
advertising_channel_type: enums.AdvertisingChannelType.VIDEO,
status: enums.CampaignStatus.PAUSED,
bidding_strategy_type: enums.BiddingStrategyType.TARGET_CPM,
// Use the temporary resource id which will be created in the previous 
operation
campaign_budget: budgetResourceName,
network_settings: {
target_google_search: true,
target_search_network: true,
},
},
},
];

const result = await customer.mutateResources(operations);

so i like to confirm 

   - video campaign is supported in google ads api or not ?
   - video campaign is under beta version of google ads api ? may be 
   because of that i am getting error like "A mutate action is not allowed on 
   this resource, from this client." ?
   - if it is in beta , how can i request for beta access?
   - also i noticed that i have only basic api access , so if i request 
   standard api access it will work or not ?

Reply all
Reply to author
Forward

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/bf361d93-3186-4d03-b6d1-57e587248614n%40googlegroups.com.


google adwords ad_manager module migration to new google ads api

2022-04-29 Thread 'D Brown' via Google Ads API and AdWords API Forum
Hi,

I've taken over the overdue google ads api migration for my team and I'm 
having an issue with:

I tried: 

from google.ads.googleads import errors, ad_manager, oauth2 

However, for ad_manager it is not located there. 

I wanted to know where or what module in the new google-ads api package is 
the module ad_manager located e.g.: 

from googleads import errors, ad_manager 
statement = (ad_manager.StatementBuilder(version='v202011') 
   .Where('id = :id') 
   .WithBindVariable('id', 
int(saved_query_id)) 
   .Limit(1)) 

Also the import change or module location for: 

from googleads import adwords 

I have been looking in the documentation but can't seem to find the mapping 
for these changes, could you please help me as we're currently unable to 
use the API

Any help is appreciated.





-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/de635cc4-f750-40bd-8100-ba8e4ab69cc6n%40googlegroups.com.


How to get ad_group_asset data?

2021-08-09 Thread base D
Hi
I want to get asset data by conversion_action.
So I tried to get data from ad group asset.
After Program build And run, no error occurred but, it was not returning 
any value.
Please see the query below.

*SELECT*
*campaign.id*
*, ad_group.id*
*, segments.conversion_action*
*, segments.conversion_action_category*
*, segments.conversion_action_name*
*, campaign.advertising_channel_type *
*  , metrics.conversions *
*FROM ad_group_asset *
*WHERE segments.date >= startDate *
*AND segments.date < endDate *
*AND campaign.advertising_channel_type = 'MULTI_CHANNEL' *

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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/58d23a30-ce88-4064-bf17-5b622f20e442n%40googlegroups.com.


video campaign creation from ads API

2021-08-04 Thread Krishnadas D
Hi 
 any updation in ads API for video campaign creation .
is there any development happening for video campaign supporting with 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 
"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/00c12533-107c-47d7-9424-9842eb7bc935n%40googlegroups.com.


Child account authenticate in ads API

2021-04-23 Thread Krishnadas D
Hi for authenticate in google ads api i am using this code 
$this->oAuth2Credential = (new OAuth2TokenBuilder())->fromFile()->build();
$session = (new GoogleAdsClientBuilder())->fromFile()
->withOAuth2Credential($this->oAuth2Credential)
->build();
$this->googleAdsClient = $session ;
$this->googleAdsServiceClient = 
$this->googleAdsClient->getGoogleAdsServiceClient();

but here i ma  authenticating as manager account , now i want to log in as 
child account

how i'll login to my child account with 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 
"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/bfd5c1cb-a21f-4755-904c-2d7f7978ace0n%40googlegroups.com.


Re: campaign start date timezone issue in MCC account

2021-04-14 Thread Krishnadas D
i tried to implement locally a timezone converter, but for that i need to 
know the time when campaign start and end . 
can i know which time normally campaign start and end ?  

On Wednesday, April 14, 2021 at 11:10:24 AM UTC+5:30 adsapiforumadvisor 
wrote:

> Hi Krishnadas,
>
> Your API requests should return date/timezone related to the account 
> specified in your API request header. If you wish to extract the exact 
> date/timezone of a specific account, you would need to perform API requests 
> using that account instead.
>
> An alternative would be to implement locally a timezone converter, once 
> you have taken note of the date/timezone of each of the sub/client accounts 
> under your MCC. I hope this helps.
>
> Best regards,
>
> [image: Google Logo] 
> Peter Laurence Napa Oliquino 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q2FY7x7: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/66a171ef-2a61-4b18-ab9b-bffccb9efa90n%40googlegroups.com.


campaign start date timezone issue in MCC account

2021-04-13 Thread Krishnadas D
Hi i am using google ads API for getting campaign start date and end date , 
my account is MCC account , so i am getting date with my MCC account 
timeZone

but i need to get time with child account time zone , how can i get like 
that ? 

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/f34d103f-1eb3-4662-8639-4817b9e9ef4bn%40googlegroups.com.


401 Unauthorized when I try to access with old developer ads.properties file

2021-03-30 Thread bhargav d
Hi All,

I am new to google ads api, old developer in our company has setup the 
developer token, client ID, client secret from his google account. As the 
old developer left now if I use his ads.properties file in my local to 
create an api it says 401 Unauthorized. So I have requested a MCC account 
and created a new developer token, client id and client secret from the 
google developer console. When I try to apply for basic access it says our 
organization has already an approved developer token. I do not have the old 
account details, how do I continue. Please help and please see the logs 
below , this is when I use old developer's ads.properties details.

*query==SELECT campaign.id, campaign.name, campaign.status, 
campaign.end_date, ad_group.id, ad_group.name, ad_group.status FROM 
ad_group WHERE ad_group.name LIKE '%%' AND campaign.status <> 'REMOVED' AND 
ad_group.status <> 'REMOVED'2021-03-30 10:58:21.481  WARN 17516 --- [  
Gax-3] c.g.ads.googleads.lib.request.summary: FAILURE REQUEST 
SUMMARY. Method: google.ads.googleads.v3.services.GoogleAdsService/Search, 
Endpoint: googleads.googleapis.com:443, CustomerID: 7941231231, RequestID: 
null, ResponseCode: UNAVAILABLE, Fault: Credentials failed to obtain 
metadata.*
*2021-03-30 10:58:21.489  INFO 17516 --- [  Gax-3] 
c.g.ads.googleads.lib.request.detail : FAILURE REQUEST DETAIL.*
*Request*
*---*
*MethodName: google.ads.googleads.v3.services.GoogleAdsService/Search*
*Endpoint: googleads.googleapis.com:443*
*Headers: {developer-token=REDACTED, login-customer-id=7947807596, 
x-goog-api-client=gl-java/1.8.0_202 gapic/ gax/1.49.0 grpc/1.23.0}*
*Body: customer_id: "7941231231"*
*query: "SELECT campaign.id, campaign.name, campaign.status, 
campaign.end_date, ad_group.id, ad_group.name, ad_group.status FROM 
ad_group WHERE ad_group.name LIKE \'\' AND campaign.status <> 
\'REMOVED\' AND ad_group.status <> \'REMOVED\'"*
*page_size: 1000*


*Response*
**
*Headers: null*
*Body: null*
*Failure message: null*
*Status: Status{code=UNAVAILABLE, description=Credentials failed to obtain 
metadata, cause=com.google.api.client.http.HttpResponseException: 401 
Unauthorized*
*at 
com.google.api.client.http.HttpRequest.execute(HttpRequest.java:1072)*
*at 
com.google.auth.oauth2.UserCredentials.refreshAccessToken(UserCredentials.java:197)*
*at 
com.google.auth.oauth2.OAuth2Credentials.refresh(OAuth2Credentials.java:157)*
*at 
com.google.auth.oauth2.OAuth2Credentials.getRequestMetadata(OAuth2Credentials.java:145)*
*at 
com.google.auth.Credentials.blockingGetToCallback(Credentials.java:112)*
*at com.google.auth.Credentials$1.run(Credentials.java:98)*
*at java.util.concurrent.Executors$RunnableAdapter.call(Unknown 
Source)*
*at java.util.concurrent.FutureTask.run(Unknown Source)*
*at 
java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(Unknown
 
Source)*
*at 
java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(Unknown
 
Source)*
*at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown 
Source)*
*at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown 
Source)*
*at java.lang.Thread.run(Unknown Source)*
*}.*

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/b441be54-ea08-4cf5-a9c0-f8a1181e489bn%40googlegroups.com.


Mismatch in stats

2021-03-26 Thread Krishnadas D
 

Hi google team 

i found some issue in stats in some campaigns , i need some explanation on 
it , and solution also .

i have 2 campaigns in ad manager , i need to get total stats of that 
campaigns

this is my campaign details <https://tinyurl.com/yjvgnget>   i attached in 
this document too.

here i need to calculate total 100%video view 

in this documentation 
<https://developers.google.com/google-ads/api/fields/v6/metrics>  it is 
mentioned that *"Percentage of impressions where the viewer watched all of 
your video." *is the 100% video view that you are showing in ad manager .

so when i calculate number of viewer watched all  video. will be 


*campaign 1 :  *

impression = 3574275  ,  video played to 100%  =  *2.18%* then total all 
video watched will be *77919.195*

*campaign 2 :  *

impression = 245812  ,  video played to 100%  =  *21.89%* then total all 
video watched will be *53808.2468*


so the total all video watched will *131727.442  , in that case *

video played to 100% =  *131727.442 / (3574275 + 245812) * 100 
= 3.448283822 %*

*BUT  *in ad manager it is showing *16.79% *

can i know what is the formula to get *total  video played to 100% for 
those 2 campaigns .*

Waiting for your kind and quick response  

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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/c7d6d54e-d9f3-4ec5-8b6b-d5438a4ffe0dn%40googlegroups.com.


authorization_error: USER_PERMISSION_DENIED

2021-03-25 Thread bhargav d
Hi All,

I am facing this error while trying to run the GetCampaigns.java 
<https://github.com/googleads/google-ads-java/blob/master/google-ads-examples/src/main/java/com/google/ads/googleads/examples/basicoperations/GetCampaigns.java>
 please 
check the error log below and please help.

*2021-03-25 12:47:19,554 WARN  [Gax-1] logging.RequestLogger 
(RequestLogger.java:159) - FAILURE REQUEST SUMMARY. Method: 
google.ads.googleads.v6.services.GoogleAdsService/SearchStream, Endpoint: 
googleads.googleapis.com:443, CustomerID: 9226652770, RequestID: 
UYn78_KprjzUn-vWpnO8fA, ResponseCode: PERMISSION_DENIED, Fault: The caller 
does not have permission.*
*2021-03-25 12:47:20,278 INFO  [Gax-1] logging.RequestLogger 
(RequestLogger.java:157) - FAILURE REQUEST DETAIL.*
*Request*
*---*
*MethodName: google.ads.googleads.v6.services.GoogleAdsService/SearchStream*
*Endpoint: googleads.googleapis.com:443*
*Headers: {developer-token=REDACTED, x-goog-api-client=gl-java/15.0.2 
gapic/ gax/1.60.1 grpc/1.32.2}*
*Body: customer_id: "9226652770"*
*query: "SELECT campaign.id, campaign.name FROM campaign ORDER BY 
campaign.id"*


*Response*
**
*Headers: 
Metadata(content-type=application/grpc,request-id=UYn78_KprjzUn-vWpnO8fA,date=Thu,
 
25 Mar 2021 16:47:19 GMT)*
*Body: null*
*Failure message: errors {*
*  error_code {*
*authorization_error: USER_PERMISSION_DENIED*
*  }*
*  message: "User doesn\'t have permission to access customer. Note: If 
you\'re accessing a client customer, the manager\'s customer id must be set 
in the \'login-customer-id\' header. See 
https://developers.google.com/google-ads/api/docs/concepts/call-structure#cid"*
*}*

*Status: Status{code=PERMISSION_DENIED, description=The caller does not 
have permission, cause=null}.*
*Request ID UYn78_KprjzUn-vWpnO8fA failed due to GoogleAdsException. 
Underlying errors:*
*  Error 0: error_code {*
*  authorization_error: USER_PERMISSION_DENIED*
*}*
*message: "User doesn\'t have permission to access customer. Note: If 
you\'re accessing a client customer, the manager\'s customer id must be set 
in the \'login-customer-id\' header. See 
https://developers.google.com/google-ads/api/docs/concepts/call-structure#cid"*


Thanks,
Bhargav

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/e31a6fd5-0928-43a5-9bf3-84932818e8can%40googlegroups.com.


Re: earned view , earned like , earned shares using ads API

2021-03-22 Thread Krishnadas D

is there any alternative to get these earned metrics through adwords api ? 
or google ads script ?
On Monday, March 22, 2021 at 10:48:37 PM UTC+5:30 adsapiforumadvisor wrote:

> Hi,
>
> Unfortunately, earned metrics are not available in the API. However, there 
> is a feature request to have them added. You can follow our blog 
> <https://ads-developers.googleblog.com/> for announcements.
>
> Regards,
> Anthony
>
> [image: Google Logo] 
> Anthony 
> Google Ads API Team 
>
>
> ref:_00D1U1174p._5004Q2Dxf0d: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/b714b476-520e-46f7-8d2f-5ade8b47e147n%40googlegroups.com.


earned view , earned like , earned shares using ads API

2021-03-22 Thread Krishnadas D
Hi , how can i get *earned view , earned likes , earned shares , Earned 
subscribers Earned playlists  *using 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 
"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/90ea0b75-9bb1-4f67-852c-4658f2856b23n%40googlegroups.com.


Re: ad_group_criterion.gender.type value not getting

2021-03-19 Thread Krishnadas D
Thanks a lot.

On Fri, 19 Mar, 2021, 11:57 pm Google Ads API Forum Advisor Prod, <
adsapiforumadvi...@gmail.com> wrote:

> Hi,
>
> You can refer to this page
> <https://developers.google.com/adwords/api/docs/appendix/codes-formats#genders>
> to map the genders to the Ids you are receiving.
>
> Cheers,
> Anthony
>
> [image: Google Logo]
> Anthony
> Google Ads API Team
>
>
> ref:_00D1U1174p._5004Q2Dx8Bl: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/CA%2BDSwyT7R%3DPTx5vyJG7cQ85uo4seNx0VQOs7Evt1QhU1CHnCEg%40mail.gmail.com.


ad_group_criterion.gender.type value not getting

2021-03-19 Thread Krishnadas D
in ads API when i use ad_group_criterion.gender.type it is showing some 
values  like 10,20,11 .

but in documentation  it is showing 
FEMALE
MALE
UNDETERMINED
UNKNOWN
UNSPECIFIED
https://developers.google.com/google-ads/api/fields/v6/ad_group_criterion

how to  get proper value or how to identify wich is male and wich is female 
??

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/2ceb970d-849e-4baa-9aea-4ac0b082503cn%40googlegroups.com.


camapign report with gender,age_range wise using google ads API

2021-03-19 Thread Krishnadas D
Hi , is there any way to get campaign report with age and gender wise with 
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 
"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/6710921c-a446-425c-a92f-efaca351946an%40googlegroups.com.


ads api getting campaign views , view_rate , video view 100%

2021-03-19 Thread Krishnadas D
Hi 
how can i get views , view_rate ,  video view 100%  in campaign report 
i am using this query to get these values , 

SELECT campaign.name,
metrics.impressions,
metrics.clicks,
metrics.ctr,
metrics.average_cpv,
metrics.average_cpm,
metrics.interactions,
metrics.cost_micros,
*metrics.views,*

*metrics.view_rate*
FROM campaign WHERE campaign.name LIKE  'campaign name' 
but  it is not working 

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/1ce415cd-3ee7-4180-9b1b-52734ab82a93n%40googlegroups.com.


get report day wise

2021-03-18 Thread Krishnadas D
Hi 
i  am trying to get campaign , ad group , ad  report through google ads API 
but i am not able to get it by day wise , i am getting total stats of the 
campaign only .

how can i get  report with group by *date* 

can i do that or not ?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/e4800f8a-721d-4719-9686-1f1465834796n%40googlegroups.com.


Re: Exception: Credential could not be refreshed

2021-03-16 Thread bhargav d
HI Thanks for the response, It says I dont have permission to reply 
privately to author. Please advice on how to reply privately.

Thanks,
Bhargav

On Tuesday, 16 March 2021 at 11:07:39 UTC-4 adsapiforumadvisor wrote:

> Hi Bhargav,
>
> Thank you for reaching out. Could you please share the complete request 
> and response logs via the *Reply privately to author* option for us to 
> further investigate?
>
> Thanks and regards,
> Xiaoming, Google Ads API Team
>
>
> [image: Google Logo] 
> Xiaoming 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q2Dvk6w: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/11a7fef3-584b-4334-87ad-0610a2492c84n%40googlegroups.com.


Exception: Credential could not be refreshed

2021-03-15 Thread bhargav d
Hello ,
I'm trying to fetch user list from my test client using 
com.google.api.ads.adwords.axis.v201809.rm.UserList but i am getting 
following exception
*com.google.api.ads.common.lib.exception.OAuthException: Credential could 
not be refreshed.*
could anyone help me ?

Thanks,
Bhargav.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/8284cb4d-f100-458e-a1dc-42bb38210d50n%40googlegroups.com.


ads.properties information

2021-03-09 Thread bhargav d
I am new to google adwords api and i am trying to create an api locally to 
get userlist but i am getting unauthorized error and i suspect 
ads.properites file may have old creds. so i want to know where to get 
these details from google ads console

   - api.googleads.refreshToken
   - api.googleads.clientId
   - api.googleads.developerToken
   - api.googleads.clientSecret


Please help.

Thanks,
Bhargav

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/62886d0b-51ae-4c27-a66c-279f60dc3883n%40googlegroups.com.


401 Unauthorized when I try to consume google ads api from local postman

2021-03-09 Thread bhargav d
I am new to google adwords api and i am trying to create an api locally to 
get userlist but when i try to consume my new api from postman i am getting 
below error in console. can anyone help.

"
Headers: null
Body: null
Failure message: null
Status: Status{code=UNAVAILABLE, description=Credentials failed to obtain 
metadata, cause=com.google.api.client.http.HttpResponseException: 401 
Unauthorized
at 
com.google.api.client.http.HttpRequest.execute(HttpRequest.java:1097)
at 
com.google.auth.oauth2.UserCredentials.refreshAccessToken(UserCredentials.java:197)
at 
com.google.auth.oauth2.OAuth2Credentials.refresh(OAuth2Credentials.java:157)
at 
com.google.auth.oauth2.OAuth2Credentials.getRequestMetadata(OAuth2Credentials.java:145)
at 
com.google.auth.Credentials.blockingGetToCallback(Credentials.java:112)
at com.google.auth.Credentials$1.run(Credentials.java:98)
at java.util.concurrent.Executors$RunnableAdapter.call(Unknown 
Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at 
java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(Unknown
 
Source)
at 
java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(Unknown
 
Source)
at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown 
Source)
at java.lang.Thread.run(Unknown Source) "

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/02c7a1e2-e54b-4780-864a-f5b3a8b6a794n%40googlegroups.com.


How can I use userlistService.GetUserList

2021-03-08 Thread bhargav d
Hi I need help in using the userlistService to write a get call to get the 
userlist. In the remarketing example I found that it is using 
import com.google.api.ads.adwords.axis.v201809.rm.UserList; package 
How can I use this in googleads instead of adwords.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/1a61f926-9647-42a5-b468-cbf1cbf7b4f4n%40googlegroups.com.


create video campaign

2021-01-18 Thread Krishnadas D
Hi 
is it possible to create video campaigns with youtube ads in 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 
"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/07c77fe9-a0c1-4e02-a4e3-a159f3ab3de2n%40googlegroups.com.


Remarketing Audience List

2021-01-17 Thread Krishnadas D
Hi 
how can i get re-marketing audience list from google ads API ?

thank you 

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/ac904175-c1e9-4148-b221-6e76005e9773n%40googlegroups.com.


custom audiences list from google ads API

2021-01-14 Thread Krishnadas D
Hi 
how can i get custom audience list from 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 
"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/2d0597d9-651c-4951-834e-a5071b7daa49n%40googlegroups.com.


target_cpa_micros seems to be required?

2021-01-11 Thread Vee D.
Hello.

I'm trying to duplicate two Google Ads campaigns through the Google Ads API 
(using google-ads-ruby), but the gRPC server returns me the following error 
(output by my code):

*Google Ads Error:*
*Error #1:* The field's value is invalid.
*Location:* mutate_operations.ad_group_operation.create.target_cpa_micros
*Value: *{:boolean_value=>false, :int64_value=>0, :float_value=>0.0, 
:double_value=>0.0, :string_value=>""}
*Error #2:* The field's value is invalid.
*Location:* mutate_operations.ad_group_operation.create.target_cpa_micros
*Value: *{:boolean_value=>false, :int64_value=>0, :float_value=>0.0, 
:double_value=>0.0, :string_value=>""}

It is worth mentioning the ad group objects in question are being fetched 
from Google Ads directly.
If target_cpa_micros is set to a value, everything then works, but since 
cpc_bid_micros and cpm_bid_micros are already set, also setting 
target_cpa_micros may produce a completely separate outcome, which I'm 
trying to avoid.

The Ruby framework is fairly buggy, but this error is being returned from 
the gRPC server.
Would you be able to point me in the right direction here?

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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/5c5bb664-0aab-4118-ac39-efc3ff948be2n%40googlegroups.com.


getting custom affinity audience from adwords API

2021-01-05 Thread Krishnadas D
Hi
i want to get custom affinity audience names and it's Ids , i there any way 
to do that in adwords  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 
"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/b72e2bc7-3e45-4840-985b-56e6bc632326n%40googlegroups.com.


get video campaign information through API

2020-11-10 Thread Krishnadas D
Hi 
i want to get campaign *start date,end date , budget* of a *video campaign* 
,
with *CampaignService* i am not getting video campaigns ,
but when i check *VIDEO_PERFORMANCE_REPORT * also it is not having *start 
date ,end date *and* budget* fields 

is there any way to get *start date,end date , budget *of *video campign*  
using adwords 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 
"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/1bcf6fcf-789d-4a21-867c-a35a0576362fn%40googlegroups.com.


create campaign with total budget

2020-10-13 Thread KRISHNADAS D
when i am creating campaign from bulk actions , budget is adding as dialy 
budget ,
i want to give total budget for the campaign 
how can i give that

in bulk upload i have this much fields 

Campaign 
Start Date 
End Date 
Campaign state 
Budget 
Campaign type 
Bid Strategy type 
Action 

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/767a312e-2a6f-43d1-b376-0e1e503162e2n%40googlegroups.com.


creating video campaign

2020-10-12 Thread KRISHNADAS D
i found some reference to create video campaign here 
<https://developers.google.com/google-ads/scripts/docs/features/video-campaigns>
 https://developers.google.com/google-ads/scripts/docs/features/video-campaigns

but it show only ad group and ad creation , can i get help for create 
campaign from google-ads script

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/f19e3835-1bac-4756-9993-89d5114c96e3n%40googlegroups.com.


Unique user (Reach) is not getting in report

2020-09-24 Thread KRISHNADAS D
i am creating a *report* for ma campaigns from ad manager 

but in the report it is not showing *Reach* 

is there any way to include *reach *in the report ?

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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/2e8e3241-101e-45c2-aa2d-e1b708964edan%40googlegroups.com.


Create YOUTUBE campaign

2020-09-23 Thread KRISHNADAS D
hi 
i want to create YouTube campaign using AdWords API

can i get help for making goal for campaign as *Brand awareness* 
and campaign type as *Video* 

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/07acc0c4-715f-43a6-9022-ef3391456d33n%40googlegroups.com.


Re: Unable to see any documentation on Updating the responsive search ad and expanded text ads in Search Campaign Using Google Ad Words API

2020-07-24 Thread Dan D
Anthony,

Really love how you guys quickly respond - so much respect for that!

So, your answer pointed me in the right direction and I was able to find 
what I was looking for since I'm using the PHP Lib.  

For those of you (like me) that searched and coded for a ton of hours, 
hopefully this helps you for the PHP lib:

https://github.com/googleads/google-ads-php/blob/master/examples/BasicOperations/UpdateExpandedTextAd.php
  

Thanks again,

Dan

On Friday, July 24, 2020 at 12:40:51 PM UTC-7 adsapiforumadvisor wrote:

> Hi Dan,
>
> Examples on how to update ads for Google Ads API can be found in our client 
> library examples 
> <https://developers.google.com/google-ads/api/docs/client-libs>. For 
> example, here is the code 
> <https://github.com/googleads/google-ads-java/blob/master/google-ads-examples/src/main/java/com/google/ads/googleads/examples/basicoperations/UpdateExpandedTextAd.java>
>  
> for updating ads in Java.
>
> Cheers,
>
> Anthony
> Google Ads API Team 
>
> ref:_00D1U1174p._5004Q22Y8r4: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/d811cf7c-b9f5-47f2-8a6f-2da42bf0014dn%40googlegroups.com.


Re: Unable to see any documentation on Updating the responsive search ad and expanded text ads in Search Campaign Using Google Ad Words API

2020-07-24 Thread Dan D
Anthony,

That's great for Google AdWords API even there's even a nice example here 
<https://developers.google.cn/adwords/api/docs/samples/php/basic-operations?hl=zh-cn#update-an-expanded-text-ad>
  
for it.  But what about us who took the time and effort to move over to the 
new Google Ads API.  There is no google example of how to update an 
Expanded Text Ad.

Every time I try, I'm getting:

Request with ID 'krnzj15jjMwJnIO8jhwQhg' has failed.

Google Ads failure details:

request_error: Field 'ad.expanded_text_ad.description' cannot be modified 
by 'UPDATE' operation.

request_error: Field 'ad.expanded_text_ad.headline_part1' cannot be 
modified by 'UPDATE' operation.

request_error: Field 'ad.expanded_text_ad.headline_part2' cannot be 
modified by 'UPDATE' operation.

request_error: Field 'ad.final_urls' cannot be modified by 'UPDATE' 
operation.


It would be great if the team could add to the Examples "Updating an 
expanded text ad"  any help in this direction for Google Ad API would be 
appreciated.

Thanks,
Dan

On Wednesday, July 22, 2020 at 6:40:31 AM UTC-7, adsapiforumadvisor wrote:
>
> Hi Gagan,
>
> You can update ads using the AdService 
> <https://developers.google.com/adwords/api/docs/reference/v201809/AdService>. 
> You can find our guide 
> <https://developers.google.com/adwords/api/docs/guides/ad-features#mutating_ads>
>  
> on how to mutate the ads and which ad types support them. You will be able 
> to update your expanded text ads, but not your responsive search ads.
>
> Regards,
> Anthony
> Google Ads API Team
>
> ref:_00D1U1174p._5004Q22Y8r4: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/a4480a17-8ad2-4fbc-9a54-ade7150ebe6fo%40googlegroups.com.


How can I real-time bid to the top, if Impression Share is updated only daily?

2020-07-17 Thread Kazoo D
Last year Google Took off the avg. position which I used to use as a proxy 
to decide when to increase my bids in order to rank higher. 

We are now left with a bunch of impression metrics, and it is hard to 
figure which one is better to use.

I suppose to most relevant ones are "Search top impression share (IS)" and 
"Search 
lost top impression share (rank)" . 
Are they symmertical? for example, if my share is 40%, will the lost show 
60%? if not, why?

Also, for today for example, I'm trying to look at all impressions share 
and rate data, and none of it is available, besides the impressions rate 
like "Search lost top impression share (rank) , which is not advised to use 
for bidding to higher position.

So are all impression share values update just once a day? This means I 
can't really use it for real time bidding. but If I bid higher, I want to 
do it based on what happened in the previous hour, and not yesterday! 
otherwise I can't at all measure the affect of my new bids in real time. 
This is disappointing. 

Please advise on the best practice.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/424da12a-499f-4e69-a0d3-6cb0f1fe8c14o%40googlegroups.com.


RE: How to segment by conversion action name in Google Ads API?

2020-06-25 Thread Dave D
Thanks Mitchell
I added it, the problem is, I get a different row for each conversion action.

If we think of it in terms of a row, I want campaign row to show how many 
conversions from each action there were in the given time period. You can see 
what I mean with the table/row sample above. 

I can do this in the web UI and in the reporting interface in the web UI, I 
just can't figure out how to do it with the GAQL query. 

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/ea7c6770-28fe-462c-8a21-4dd1e5d10993o%40googlegroups.com.


How to segment by conversion action name in Google Ads API?

2020-06-25 Thread Dave D
Hi
I'm trying to get a report via the Google Ads API that returns campaigns 
and conversions by conversion action last week. 

query = f'''SELECT campaign.name,
campaign.advertising_channel_type,
segments.week,
customer.currency_code,
metrics.all_conversions,
FROM campaign
WHERE segments.week DURING LAST_WEEK_MON_SUN
AND campaign.name LIKE '%pro%' 
AND campaign.name NOT LIKE '%promo%'
'''

Unfortunately, my query above returns a separate row for each campaign with 
data for the conversion actions separately.
How can I retrieve the aggregate data for the campaign with the conversion 
number for each conversion type like below?


Campaign Campaign Type Week Currency Conversion Action 1 Conversions. 
Conversion 
Action 2 Conversions. Conversion Action 3 Conversions.
Campaign 1  
  5
 2  10
Campaign 2  
  2
 1  12



I can't query the conversion_action view as the campaign field is not 
supported on that. 
Any help would be very much appreciated. 

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/f238e0e6-fdef-4281-b40d-aad71318da9co%40googlegroups.com.


Re: frequencyCaps timeLength set by default to 1

2020-03-13 Thread sharp d
Hi All,  

I am also facing the same issue. Can you please provide the solution?

Regards
Raj

On Thursday, February 27, 2020 at 4:14:36 PM UTC+5:30, adstest adstest 
wrote:
>
> Hi all,
>
> we have created successfully a campaign with frequency capping, without 
> specifying the timeLength. Below the request:
>
> https://googleads.googleapis.com/v2/customers/
> /campaigns:mutate
>
> "frequencyCaps": [
> {
> "key": {
> "level": "AD_GROUP",
> "eventType": "IMPRESSION",
> "timeUnit": "DAY",
> },
> "cap": 10
>
> Executing a GET call, GADS return a default value for "timeLength": 1. 
> What does it means ? 
>
> We were expecting that the Ad will be shown to the user 10 times per day, 
> *for 
> all the time period of the campaign*, just because we did not send the 
> timeLenght.
>
> Thanks,
> Alessandra
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/6fd62658-b4f5-4315-924a-f5f2e13286f3%40googlegroups.com.


There is a problem when requesting Google ad API.

2019-12-12 Thread PLAY D D
The questions are as follows.


There is a problem when requesting Google ad API.

My application use google-ads 3.0 version.
and import com.google.ads.googleads.v1.services.

Use that query to get your Google ad account list.

STEP 1.

"SELECT segments.date, metrics.impressions, metrics.clicks, 
metrics.cost_micros, metrics.conversions, metrics.all_conversions, 
metrics.conversions_value, metrics.all_conversions_value FROM customer 
WHERE segments.date BETWEEN '%s' AND '%s'";

STEP 2. keywordQuery

"SELECT segments.date, campaign.id, campaign.name, ad_group.id, 
ad_group.name, ad_group_criterion.criterion_id, 
ad_group_criterion.keyword.text, ad_group_criterion.status, 
segments.ad_network_type, segments.device, metrics.impressions, 
metrics.clicks, metrics.cost_micros, metrics.conversions, 
metrics.all_conversions, metrics.average_position, 
metrics.conversions_value, metrics.all_conversions_value, 
metrics.absolute_top_impression_percentage, 
metrics.top_impression_percentage, 
metrics.search_absolute_top_impression_share, 
metrics.search_top_impression_share, 
metrics.search_budget_lost_absolute_top_impression_share, 
metrics.search_budget_lost_top_impression_share, 
metrics.search_rank_lost_absolute_top_impression_share, 
metrics.search_rank_lost_top_impression_share FROM keyword_view WHERE 
segments.date BETWEEN '%s' AND '%s' ";


Call api logic like this.

SearchGoogleAdsRequest request = SearchGoogleAdsRequest.newBuilder()
.setCustomerId(id)
.setPageSize(PAGE_SIZE)
.setQuery(getAWQLString(keywordQuery, startYmd, reportYmd))
.build();
SearchPagedResponse response = googleAdsServiceClient.search(request);

#1 For each advertiser account, call the API that obtains keyword effect 
data, but all data that is imported by API calls  be zero.

#2 and sometimes get exception error like this 
io.grpc.StatusRuntimeException: UNAVAILABLE: 502:Bad Gateway

Thank you for reading this question.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/da704ac9-151f-4de1-b1fb-cd3a4ec746fc%40googlegroups.com.


Problem with getting LANDING_PAGE_REPORT for merchant

2019-04-25 Thread roistat . artemov . d


При запросе отчёта LANDING_PAGE_REPORT на получение ExpandedFinalUrlString 
для кампаний Merchant возвращается пустой ответ (данных кампаний нет в 
Merchant это тестовый запрос). Возможно ли, вообще, каким-то образом можно 
получить FinalUrl из отчёта у объявлений из Merchant по которым были 
расходы?


Report query - SELECT ExpandedFinalUrlString FROM LANDING_PAGE_REPORT WHERE 
CampaignId IN [1732047796, 1732738983] DURING 20190420,20190420


Response report - 

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/fec247dc-3861-448f-8d50-9405d47a2d10%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Problem with content api "User cannot access account 101616661"

2019-03-26 Thread roistat . artemov . d


When trying to access the GET method 
https://www.googleapis.com/content/v2/101616661/products/1212515
We get the following error in reply:

{
   "error":{
  "errors":[
 {
"domain":"content.ContentErrorDomain",
"reason":"auth/account_access_denied",
"message":"User cannot access account 101616661"
 }
  ],
  "code":401,
  "message":"User cannot access account 101616661"
   }
}

But at the same time, if you execute a request (with the same access token) 
to the GET method https://www.googleapis.com/content/v2/accounts/authinfo, 
then we get the answer:

{
   "kind":"content#accountsAuthInfoResponse",
   "accountIdentifiers":[
  {
 "merchantId":"101616661"
  }
   ]
}

Those access to the account 101616661 is, but we still get an error.

Is it possible to solve the problem?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/86912141-76df-4427-8670-cc333074995c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Update method for trackingTemplate at Production version of Google Ads API?

2019-03-14 Thread roistat . artemov . d
Could you will be able to modify this in new versions of api, because it is 
extremely inconvenient to recreate ads again. Especially for complex 
business areas such as medicine etc.

среда, 13 марта 2019 г., 21:00:38 UTC+3 пользователь 
googleadsapi-forumadvisor написал:
>
> Hello,
>
> Apologies for the confusion. I have checked with the team. Looks like we 
> cannot modify attributes other than status of an existing ad as specified 
> in this 
> <https://developers.google.com/adwords/api/docs/common-errors#errors> 
> section of the guide. However, you can create a new Ad with the desired 
> description and pause or remove the current Ad. Please let me know if you 
> have any further questions.
>
> Regards,
> Sai Teja, AdWords API Team
>
> Was your question answered? Please rate your experience with us by taking 
> a short survey.
> If not -- reply to this email and tell us what else we can do to help.
>
> Take Survey 
> <https://support.google.com/google-ads/contact/survey_transactional?caseid=7-650624978=en=1>
>
> Also find us on our blog and discussion group:
> http://googleadsdeveloper.blogspot.com/search/label/adwords_api
> https://developers.google.com/adwords/api/community/
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/220961d5-9720-4c21-9147-ee6130303122%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Update method for trackingTemplate at Production version of Google Ads API?

2019-03-13 Thread roistat . artemov . d
When you try to change the ad through adGroupAdService, we get an error 
https://developers.google.com/adwords/api/docs/common-errors#AdError.CANNOT_USE_AD_SUBCLASS_FOR_OPERATOR


вторник, 5 февраля 2019 г., 23:10:54 UTC+3 пользователь 
googleadsapi-forumadvisor написал:
>
> Hello Dmitry,
>
> You could update the final_urls and tracking_url_template of an Ad by 
> using the MutateAdGroupAds operation of the AdGroupAdService 
> <https://developers.google.com/google-ads/api/reference/rpc/google.ads.googleads.v0.services#google.ads.googleads.v0.services.AdGroupAdService>.
>  
> You could refer this sample 
> <https://github.com/googleads/google-ads-java/blob/master/google-ads-examples/src/main/java/com/google/ads/googleads/examples/basicoperations/AddExpandedTextAds.java#L120>
>  in 
> Java to add FinalUrls and can use the same to add TrackingUrlTemplate as 
> well, code samples in other languages can be found here 
> <https://developers.google.com/adwords/api/docs/clientlibraries>. Please 
> elaborate if your question is different.
>
> You could use all the available features of the Beta API for production 
> accounts as well. Since, all the features are not yet available in Beta, we 
> recommend you to mix match both the API's and use. You could refer the 
> slides in this blog post 
> <https://ads-developers.googleblog.com/2018/12/recap-of-latest-google-ads-api-webinar.html>
>  to 
> know more information about the Beta API's RMF parity version release dates.
>
> Regards,
> Sai Teja, Google Ads API Team
>
>
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
> Also find us on our blog and discussion group:
> http://googleadsdeveloper.blogspot.com/search/label/adwords_api
> https://developers.google.com/adwords/api/community/
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
>
> Was your question answered? Please rate your experience with us by taking 
> a short survey.
> If not -- reply to this email and tell us what else we can do to help.
>
> Take Survey 
> <https://support.google.com/google-ads/contact/survey_transactional?caseid=7-650624978=en=1>
>
> Also find us on our blog and discussion group:
> http://googleadsdeveloper.blogspot.com/search/label/adwords_api
> https://developers.google.com/adwords/api/community/
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/df9fc41f-4105-434a-b527-4c9744daf612%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Google Ads API KeywordPlan vs Adwords TargetingIdeaService terms and RMF

2019-03-01 Thread Tim D
Thank you!

On Friday, March 1, 2019 at 10:00:34 PM UTC, googleadsapi-forumadvisor 
wrote:
>
> Hi Tim, 
>
> The API compliance team is better equipped to confirm this. Could you 
> please reach-out to them via this form 
> <https://services.google.com/fb/forms/apicontact/>? 
>
> Thanks,
> Sreelakshmi, Google Ads API Team
>
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
> Also find us on our blog and discussion group:
> http://googleadsdeveloper.blogspot.com/search/label/adwords_api
> https://developers.google.com/adwords/api/community/
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
>
> Was your question answered? Please rate your experience with us by taking 
> a short survey.
> If not -- reply to this email and tell us what else we can do to help.
>
> Take Survey 
> <https://support.google.com/google-ads/contact/survey_transactional?caseid=6-670825227=en=1>
>
> Also find us on our blog and discussion group:
> http://googleadsdeveloper.blogspot.com/search/label/adwords_api
> https://developers.google.com/adwords/api/community/
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/f28c0c80-64ad-44a7-a2d5-ce77e94ba076%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Google Ads API KeywordPlan vs Adwords TargetingIdeaService terms and RMF

2019-03-01 Thread Tim D
I would like to offer keyword search volume and estimates to my users and 
want to ask about the related terms of service and RMF:


AdWords Required Minimum Functionality

*Requirements for API Clients providing Targeting Idea Service or Traffic 
Estimation Service*
If an AdWords API Client provides any functionality related to 
TargetingIdeaService or TrafficEstimatorService, it must fully implement 
the required Creation Functionality, Management Functionality and Reporting 
Functionality marked "Required" in the table below

Google Ads API related services:
KeywordPlanHistoricalMetrics, KeywordPlanKeywordForecast


I cannot find any specific reference to these in the terms or RMF. Can you 
confirm if RMF applies in this case as well?


Many 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/24e53487-3fed-40a9-8771-34388f162e9d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Update method for trackingTemplate at Production version of Google Ads API?

2019-02-05 Thread roistat . artemov . d
Will you done update method for the tracking template or the final URL for 
the entity Ads at the production version of 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 
"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/f4bcb591-8183-4783-9226-3645b23973be%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Problem with trackingTemplate for SEARCH_DYNAMIC_ADS

2019-01-24 Thread roistat . artemov . d
My company is an analytics service, we count all visits to the client’s 
site using a counter like this google analytics.
This means we save their tracking template that was on the site visit.

Visits for all types of ads except SEARCH_DYNAMIC_ADS have a tracking 
template.

среда, 23 января 2019 г., 19:14:10 UTC+3 пользователь 
googleadsapi-forumadvisor написал:
>
> Hello, 
>
> Thank you for sharing the details. When an ad is clicked, the tracking 
> template parameters will be added to your final URL to create your landing 
> page URL. A tracking template created at the ad group, campaign, or account 
> level applies to all of the ads in the corresponding ad group, campaign, or 
> account. If you define multiple tracking templates at different levels, the 
> most specific template will be used. The keyword tracking template is the 
> most specific followed by the ad, ad group, campaign, then account. You may 
> refer to this guide 
> <https://developers.google.com/adwords/api/docs/guides/upgraded-urls#hierarchy_of_adwords_entities>
>  for 
> more information. Could you please share the details on how you're 
> validating that the tracking template parameters are not appended? If 
> you're using the API reports, these results may not be returned for the 
> Dynamic Search Ads. You may also refer to this help center article 
> <https://support.google.com/google-ads/answer/7362441?co=ADWORDS.IsAWNCustomer%3Dfalse=en>
>  as 
> a reference. 
>
> Regards,
> Bharani, AdWords API Team
>
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
> Also find us on our blog and discussion group:
> http://googleadsdeveloper.blogspot.com/search/label/adwords_api
> https://developers.google.com/adwords/api/community/
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
>
> Was your question answered? Please rate your experience with us by taking 
> a short survey.
> If not -- reply to this email and tell us what else we can do to help.
>
> Take Survey 
> <https://support.google.com/google-ads/contact/survey_transactional?caseid=6-906624884=en=1>
>
> Also find us on our blog and discussion group:
> http://googleadsdeveloper.blogspot.com/search/label/adwords_api
> https://developers.google.com/adwords/api/community/
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/5f00c342-7f8b-4ca6-8f3a-952fb653c8a7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Problem with trackingTemplate for SEARCH_DYNAMIC_ADS

2019-01-24 Thread roistat . artemov . d
My company is an analytics service, we count all visits to the client’s 
site using a counter like this google analytics.
This means we fix their tracking template that was on the site visit.

Visits for all types of ads except SEARCH_DYNAMIC_ADS have a tracking 
template.

среда, 23 января 2019 г., 19:14:10 UTC+3 пользователь 
googleadsapi-forumadvisor написал:
>
> Hello, 
>
> Thank you for sharing the details. When an ad is clicked, the tracking 
> template parameters will be added to your final URL to create your landing 
> page URL. A tracking template created at the ad group, campaign, or account 
> level applies to all of the ads in the corresponding ad group, campaign, or 
> account. If you define multiple tracking templates at different levels, the 
> most specific template will be used. The keyword tracking template is the 
> most specific followed by the ad, ad group, campaign, then account. You may 
> refer to this guide 
> <https://developers.google.com/adwords/api/docs/guides/upgraded-urls#hierarchy_of_adwords_entities>
>  for 
> more information. Could you please share the details on how you're 
> validating that the tracking template parameters are not appended? If 
> you're using the API reports, these results may not be returned for the 
> Dynamic Search Ads. You may also refer to this help center article 
> <https://support.google.com/google-ads/answer/7362441?co=ADWORDS.IsAWNCustomer%3Dfalse=en>
>  as 
> a reference. 
>
> Regards,
> Bharani, AdWords API Team
>
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
> Also find us on our blog and discussion group:
> http://googleadsdeveloper.blogspot.com/search/label/adwords_api
> https://developers.google.com/adwords/api/community/
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
>
> Was your question answered? Please rate your experience with us by taking 
> a short survey.
> If not -- reply to this email and tell us what else we can do to help.
>
> Take Survey 
> <https://support.google.com/google-ads/contact/survey_transactional?caseid=6-906624884=en=1>
>
> Also find us on our blog and discussion group:
> http://googleadsdeveloper.blogspot.com/search/label/adwords_api
> https://developers.google.com/adwords/api/community/
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/23aeaae6-a1d8-4a8d-a0bd-46736057b3c9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Problem with trackingTemplate for SEARCH_DYNAMIC_ADS

2019-01-22 Thread roistat . artemov . d
We set up a tracking template for an ad, an ad group, and a campaign of 
type SEARCH_DYNAMIC_ADS. But when you click on ads, the tracking template 
is not added to the URL.

The problem is reproduced only for SEARCH_DYNAMIC_ADS. For all other ad 
types, the tracking template works correctly.

Example of tracking template
{lpurl}?roistat=google6_{network}_{adgroupid}_{creative}_{keyword}&
roistat_referrer={placement}_pos={adposition}


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/f68691eb-d26a-49d5-800c-dac569b86665%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Problem with API method content/v2/

2019-01-22 Thread roistat . artemov . d


We send request https://www.googleapis.com/content/v2/
Request:

{
   "entries":[
  {
 "batchId":0,
 "merchantId":122581929,
 "method":"GET",
 "productId":21146
  },
  {
 "batchId":1,
 "merchantId":122581929,
 "method":"GET",
 "productId":21169
  }
   ]
}

Responce:

{
 "error": {
  "errors": [
   {
"domain": "content.ContentErrorDomain",
"reason": "auth/account_access_denied",
"message": "User cannot access account 122581929"
   }
  ],
  "code": 401,
  "message": "User cannot access account 122581929"
 }
}

Access to account 122581929 is issued (mail of the same administrator, mail 
olyakarmel...@gmail.com)
<http://jira.roistat.com/secure/attachment/26691/26691_screenshot-2.png>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/425a93d9-5ae8-4dcc-bf25-902334767646%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


How to update trackingUrlTemplate at campaign

2018-12-29 Thread roistat . artemov . d
We use your php library https://github.com/googleads/googleads-php-lib and 
want update trackingUrlTemplate, but don't understand how to do it.
Help please&

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/a998a515-2229-485f-8bcf-56af16b348e6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


TOO_MANY_CHANGES with Google\AdsApi\AdWords\v201809\ch\CustomerSyncService

2018-12-11 Thread roistat . artemov . d
Our application requests data if there are changes in campaigns and ads.
We have a client who has a lot of campaigns and ads on them (more than 300k 
in a couple of days), now we have data broken down into 20 (10 focus 
groups) campaigns, and ads are broken down by day, but this is not enough. 
If you still reduce the number, it will increase the update time. You need 
to find out if there is another way to solve the problem of 
TOO_MANY_CHANGES by GoogleAdwords.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/cfec2c07-774a-4d7a-97af-ef9f38363efe%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


TOO_MANY_CHANGES with Google\AdsApi\AdWords\v201809\ch\CustomerSyncService

2018-12-11 Thread roistat . artemov . d
Our application requests data if there are changes in campaigns and ads.
We have a client who has a lot of campaigns and ads on them (more than 300k 
in a couple of days), now we have data broken down into 20 (10 focus 
groups) campaigns, and ads are broken down by day, but this is not enough. 
If you still reduce the number, it will increase the update time. You need 
to find out if there is another way to solve the problem of 
TOO_MANY_CHANGES by GoogleAdwords.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/e582b1ac-5003-439a-bd04-b956cc347c0c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Problem with API service Google\AdsApi\AdWords\v201809\ch\CustomerSyncService

2018-12-11 Thread roistat . artemov . d
Our application requests data if there are changes in campaigns and ads.
We have a client who has a lot of campaigns and ads on them (more than 300k 
in a couple of days), now we have data broken down into 20 (10 focus 
groups) campaigns, and ads are broken down by day, but this is not enough. 
If you still reduce the number, it will increase the update time. You need 
to find out if there is another way to solve the problem of 
TOO_MANY_CHANGES by GoogleAdwords.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/f887fb73-7926-440e-94ae-e4bb5dfa5602%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Can't delete users using v201806's AdwordsUserListService

2018-12-07 Thread Pablo D.
Hi Dannison,

It seems it was a permissions issue. I was trying to perform actions on a 
shared user list, using the clientCustomerId that wasn't the owner of those 
lists.

Thank you!

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/97e61ac6-3a2d-49a3-913c-9ee8694684db%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Can't delete users using v201806's AdwordsUserListService

2018-12-04 Thread Pablo D.
Indeed, on my original post, the latest code block shows the query I've 
been doing for AdwordsUserListService.get() 
<https://developers.google.com/adwords/api/docs/reference/v201809/AdwordsUserListService#get>.
 
It returns (in my specific case) 3 different user lists. Although they all 
have the following XML property:

  true


As I read on the docs, this value 

> [...] Depends on the list ownership and list type. For example, external 
> remarketing user lists are not editable.
>

I believe that manually uploaded User Lists (presented as *CrmBasedUserList*s 
within the API) should be editable.
I'll try to meet with our Marketing Team for a further explanation since I 
don't have this specific knowledge on these *Remarketing* concepts.

In any case, I'm asking this because I'm working on integrating a solution 
to comply with customers' right to be forgotten. Maybe there's another way 
to mass delete user data from Google Products (or at least Google Ads) 
using a simpler approach, than querying every user lists and performing 
memberLists mutations for each of them.
If that's the case, could you please point me out where can I find more 
information, Dannison?

Thanks a lot!

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/322a5bdd-02f2-4e04-8339-822bd4054c9b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Can't delete users using v201806's AdwordsUserListService

2018-12-03 Thread Pablo D.
Hey, everyone! I'm trying to automate user deletion from our Customer Lists 
at Google Ads for GDPR compliance matters.

I couldn't get a positive response from Google's API. Data below.

*URL:*
https://adwords.google.com/api/adwords/rm/v201806/AdwordsUserListService

*Body Payload:*

http://schemas.xmlsoap.org/soap/envelope/;>

   

 https://adwords.google.com/api/adwords/rm/v201806;>

   

   {DEV_TOKEN_HERE}

   {CLIENT_CUSTOMER_ID_HERE}

 

   

   http://schemas.xmlsoap.org/soap/envelope/;>

 https://adwords.google.com/api/adwords/rm/v201806;>

   

 https://adwords.google.com/api/adwords/cm/v201806;
>REMOVE

 

   https://adwords.google.com/api/adwords/rm/v201806”>{MY_USER_LIST_ID}


   https://adwords.google.com/api/adwords/rm/v201806;>

 {MY_HASHED_EMAIL_TO_BE_REMOVED}

   

 

   

 

   



*Response:*
http://schemas.xmlsoap.org/soap/envelope/;>

https://adwords.google.com/api/adwords/rm/v201806; xmlns=
"https://adwords.google.com/api/adwords/cm/v201806;>
{requestID}
AdwordsUserListService
mutateMembers
1
245




soap:Client
[MutateMembersError.INVALID_USER_LIST_ID @ 
operations[0].operand.userListId; trigger:'UserListId: {MY_USER_LIST_ID}']


https://adwords.google.com/api/adwords/cm/v201806; xmlns:ns2=
"https://adwords.google.com/api/adwords/rm/v201806;>
[MutateMembersError.INVALID_USER_LIST_ID @ 
operations[0].operand.userListId; trigger:'UserListId: {MY_USER_LIST_ID}']

ApiException

http://www.w3.org/2001/XMLSchema-instance; xsi:type=
"ns2:MutateMembersError">
operations[0].operand.userListId


operations
0


operand


userListId

UserListId: {MY_USER_LIST_ID}
MutateMembersError.INVALID_USER_LIST_ID

MutateMembersError
INVALID_USER_LIST_ID







*Note:*
Values between curly brackets are valid. Actually, *{MY_USER_LIST_ID}* 
could be any item from the response of the following query:
http://schemas.xmlsoap.org/soap/envelope/;>

  https://adwords.google.com/api/adwords/rm/v201806;>

{DEV_TOKEN_HERE}
{CLIENT_CUSTOMER_ID_HERE}
  

http://schemas.xmlsoap.org/soap/envelope/;>
  https://adwords.google.com/api/adwords/rm/v201806;>
https://adwords.google.com/api/adwords/rm/v201806;>
  Id
  Name
  Status
  
ListType
EQUALS
CRM_BASED
  
  
Status
EQUALS
OPEN
  

  



Any ideas on this? Thank you!

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/6c4496d9-3b5a-409a-a696-4144f21e8f1b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


ReferenceError: "AdWordsApp" is not defined

2018-10-29 Thread D
Hello,

I am trying to run the link checker in my account. However, I get an error:

ReferenceError: "AdWordsApp" is not defined. (line 115, file "Code")

Please let me know how to proceed. I am using a single account. I even 
tried to take the manager account script but received the same result.

Sincerely,

Dm.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/c21b7feb-80b6-42da-8f8e-91d2bff0385d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Using API to import Change History in Google Spreadsheet

2018-09-19 Thread Jurgen D
Hi there,

I''ve been a AdWords advertiser for several years now but relatively new to 
Google App Script.  Reporting and tracking changes I make in my AdWords 
campaigns has been a time-consuming task for me.  Is there a Google App 
script that automatically imports the Change History into Google 
Spreadsheets?

This way I can group changes and report my findings in Google Spreadsheet.  
Or perhaps anyone has a better idea for tracking changes/running tests in 
the Google spreadsheet environment?

Jurgen

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/852eeed6-f84d-4654-b27b-64806975f7d3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Third Party Ads - CUSTOMER_NOT_APPROVED_THIRDPARTY_REDIRECT_ADS

2018-08-20 Thread Mantas D.
I can't seem to find much information on ThirdPartyAds in google AdWords.
Out business people are doing lot of manual labour to create them and then 
API informed me with message:
- *[AdError.CUSTOMER_NOT_APPROVED_THIRDPARTY_REDIRECT_ADS @ 
operations[0].operand.ad]*

This got me thinking - can Customer be approved for Third Party Ads at all?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/3efd7e2d-3b6d-41e8-adc1-f86b31f8b60f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


ManagedCustomer (Account) limit problem

2018-07-05 Thread Mantas D.
I am using AdWords JAVA API and while developing an application I've ran 
into ManagedCustomer limit issue on the test account.
I can not create more but I'm also  unable to remove ones that were created 
through API or UI. In fact none of the Managed Customers I've created 
seem to be visible in the list of the UI. (see link 
<http://prntscr.com/k2qgsu>)

Can I remove unneeded accounts?
Are there any workarounds?


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/83df7d6d-ca79-4cf4-87ea-1621b0b7177d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Click Performance Report

2018-04-09 Thread Tony D
I am Not a developer and am trying to find out how to get a detailed copy 
of my Click Performance Report for my Adwords Account, and don't know much 
about API's.  I have contacted Adwords Support, but have not heard back...

Thanks in advance.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/a32cfefe-ef55-46f7-9736-6a1958707a7d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Adwords Click Performance Report

2018-04-09 Thread Tony D
I am NOT a developer, and would like to know how to get a copy of the Click 
Performance Report mentioned at the link below for my Adwords Account.  Any 
help will be greatly appreciated.  I have contacted Adwords support and am 
waiting to hear back...

https://developers.google.com/adwords/api/docs/appendix/reports/click-performance-report#clicks

Thanks

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/7a0afab7-14aa-4b07-8ee8-03d3b2deb707%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


How can I add an CRMBased User list to a Video Campaign using the AdWords API (or any Google API)?

2017-12-06 Thread George D Elig
I've read several discussions that Video Campaigns are not returned by 
CampaignService (because they are not supported by the API). I also see 
this in my tests. The Customer Match API documents that you can create 
CRMBased UserLists and add them to Video Campaigns but how can this be 
achieved using the API if the campaign service does not return Video 
Campaigns?

--David.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/72766281-21a9-4d6d-8691-5ce010d05668%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Custom URL Parameters not updating properly

2017-12-06 Thread Chris D
I believe there is a bug for updating and removing Custom URL Parameters
When I try to update url parameters for adgroups through the UI we receive 
errors.
When I try to update url parameters for adgroups through the api I see that 
the previous 3 parameters still exists in the list but are mark as remove. 
However when attempting to save it is throwing error

idError.NOT_FOUND @ 
operations[0].operand.urlCustomParameters.parameters[3].key; 
trigger:'nameOfParameter'

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/d7fb156b-ccab-4266-bb1f-1dc8a3c1ad6c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


How can I deactivate a CRMBasedUserList using the API?

2017-12-01 Thread George D Elig
Using the Python API, I've created a NegativeCampaign exclusion list. How 
can I programmatically deactivate/disable that CRMBasedUserList? Closing 
the userlist prevents new users from being added but I want to stop 
excluding adds to that user, without requiring a user to log into AdWords.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/8fdc1b8a-c6e8-4b36-a02c-0a1e15c32678%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Can I programmatically remove a closed CrmBasedUserList from AdWords

2017-11-21 Thread George D Elig
Hi, 

I am programmatically creating a UserList for my campaign. When a new 
marketing campaign (Marketing campaigns reuse the existing AdWords 
campaigns) starts, I close the previous userList by setting the status to 
closed and create a new list, for the new marketing campaign. The old 
closed list then needs to be manually deleted, which I want to avoid.

Can I programmatically delete them or is there a better way to handle this?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/3b2cfb0b-9cee-4d4c-ae7e-f8ee326dcc97%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


How can I set a userlist to be of type 'Exclusion' using the API?

2017-10-22 Thread George D Elig
I am able to query campaigns and create a CRM based user-list using the API 
and the python gooleads lib. However, I don't see how (or any examples) to 
programmatically make the user-list an exclusion.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/9415ddc4-9abf-438f-9170-92523afb1bc7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: QualityScore in AdGroupCriterionService, results are different in v201609

2016-09-22 Thread Cesar D.
Hi Peter,

Thanks for answering. Yes, I meant v201607. 

 I understand that some keywords may not have a QualityScore and thus 
have no data for QualityInfo. However, according to the link kindly 
provided by you if a keyword has a quality score I should be still able to 
get QualityInfo.

 The problem is that the AdWords User Interface shows 101 matches for 
my query, all of then with a QualityScore of 6/10, a result that can be 
replicated using v201605 with the predicates below, which is not the case 
anymore for v201607. What are the chances of a keyword being shown as 
having a value for QS on the UI, but not through the API?

 I'm wondering if the predicates need to be adapted, or if the only 
option is now to switch to using Reports instead of AdGroupCriterionService.

 Thank you,
 César

On Thursday, September 22, 2016 at 12:30:19 PM UTC+2, Peter Oliquino wrote:
>
> Hi Cesar,
>
> Could you confirm if you meant version v201607 instead of v201609? Our 
> latest version currently is v201607 
> <https://googleadsdeveloper.blogspot.com/2016/07/announcing-v201607-of-adwords-api.html>.
>  
> Also, as of this latest version, the QualityInfo 
> <https://developers.google.com/adwords/api/docs/reference/v201605/AdGroupCriterionService.BiddableAdGroupCriterion#qualityinfo>
>  (QualityScore) 
> attribute is no longer returned by the AdGroupCriterionService, however, it 
> is still available in the reports 
> <https://developers.google.com/adwords/api/docs/appendix/reports/all-reports#qualityscore>.
>  
> For more information, kindly refer to this link 
> <https://developers.google.com/adwords/api/docs/reference/#quality-score>.
>
> Best regards,
> Peter
> AdWords API Team
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/c48b58c4-3b3c-49c9-89c7-578a3534c5fc%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


QualityScore in AdGroupCriterionService, results are different in v201609

2016-09-22 Thread Cesar D.
I have a piece of code that returns the count of keywords within a given 
QualityScore range (0 to 6, for instance) through the 
AdGroupCriterionService. 

{u'dateRange': {u'max': '20160921', u'min': '20160921'},
 u'fields': [u'Id'],
 u'paging': {u'numberResults': u'0'},
 u'predicates': [{u'field': u'CriteriaType',
  u'operator': u'EQUALS',
  u'values': [u'KEYWORD']},
 {u'field': u'CriterionUse',
  u'operator': u'EQUALS',
  u'values': [u'BIDDABLE']},
 {u'field': u'Status',
  u'operator': u'EQUALS',
  u'values': [u'ENABLED']},
 {u'field': u'QualityScore',
  u'operator': u'GREATER_THAN_EQUALS',
  u'values': ['0']},
 {u'field': u'QualityScore',
  u'operator': u'LESS_THAN_EQUALS',
  u'values': ['6']},
 {u'field': u'AdGroupId',
  u'operator': u'IN',
  u'values': [XX]}]}

This has been working properly until I updated to API v201609. Now I get 0 
results whenever using QualityScore or HasQualityScore as predicates. This 
also diverges from what I see in the User Interface, which displays the 
proper number of keywords that match the criteria (non 0 by the way).

How can I get the API to give the right amount of keywords filtered by 
QualityScore?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/823b0a26-595b-4b6a-8700-f2041d6f1549%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Api via python DownloadReportAsString totalNumResults?

2016-08-08 Thread d . axelrod90
I am looking for documentation on the total number of results I can bring 
per DownloadReportAsString call.

I create different thread that query at most one day for the report, 
however, I am looking at edge cases when more than 150k results should be 
returned.

My question is how to use *pagination* if no ReportDownload object returns 
the totalNumResults? Am I missing something?

Example python code (incomplete on purpose):

while more_results:
  res = DownloadReportAsString(def, headers)
  offset += some_constant
  totalNum = ???
  more_results = offset < totalNum

Thanks!

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/169d6c64-6086-4b25-bc08-31a55c0939eb%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Unmarshalling Error with Operator for Add AdGroup

2016-07-03 Thread Sole D
Hi, everybody!. 
I'm trying to add a new AdGroup to my existing Campaign, using the API.
I'm using my test account for adWords and I'm able to create campaigns, but 
I'm getting a validation error with the campaignId.
When I've tried the creation without a campaignId on the  I'm 
receiving the " [RequiredError.REQUIRED @ 
operations[0].operand.campaignId]" error, that is the 
expected behaviour.
But then, when sending the campaignId as part of the request:

   1. http://schemas.xmlsoap.org/soap/envelope/; 
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
   xmlns:tns="https://adwords.google.com/api/adwords/cm/v201605; 
   xmlns:jaxb="http://java.sun.com/xml/ns/jaxb;>https://adwords.google.com/api/adwords/cm/v201605; 
   
xmlns="https://adwords.google.com/api/adwords/cm/v201605;>boma-projectXXX-XXX-XXXfalsehttps://adwords.google.com/api/adwords/cm/v201605;>ADDMY-ADGROUP-NAMEPAUSEDXX


The request resolves into an error:

 SOAP ERROR:
 http://schemas.xmlsoap.org/soap/envelope/;>
  

  soap:Client
  Unmarshalling Error: cvc-complex-type.2.4.a: Invalid 
content was found starting with element 'campaignId'. One of 
'{"https://adwords.google.com/api/adwords/cm/v201605":settings, 
"https://adwords.google.com/api/adwords/cm/v201605":experimentData, 
"https://adwords.google.com/api/adwords/cm/v201605":labels, 
"https://adwords.google.com/api/adwords/cm/v201605":forwardCompatibilityMap, 
"https://adwords.google.com/api/adwords/cm/v201605":biddingStrategyConfiguration,
 
"https://adwords.google.com/api/adwords/cm/v201605":contentBidCriterionTypeGroup,
 
"https://adwords.google.com/api/adwords/cm/v201605":baseCampaignId, 
"https://adwords.google.com/api/adwords/cm/v201605":baseAdGroupId, 
"https://adwords.google.com/api/adwords/cm/v201605":trackingUrlTemplate, 
"https://adwords.google.com/api/adwords/cm/v201605":urlCustomParameters}' 
is expected. 

  
 

What am I doing wrong?. I will appreciate any clue that may help me with 
this issue.
Thanks!.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/e0157c22-0d0a-4797-a2cd-7359e6018980%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: AdWords Python API: Passing Proxy Username and Password

2016-03-31 Thread F D
Thanks for the response
I did try doing that. I have something like this in my googleads.yaml:

# Proxy configurations (optional)
proxy_info:
  host: username:passw...@myproxy.com
  port: 1234

Throws an error in httplib2:  

httplib2.ServerNotFoundError: Unable to find the server at accounts.google.
com

I believe httplib2 has specific settings for the proxy username and 
password which never get set in line 118 in the above link.

Any idea on when the fix might be introduced?


Thanks again!

On Thursday, March 31, 2016 at 9:58:20 AM UTC-4, Yin Niu wrote:
>
> Hello, 
>
> The python library owner is currently working on an enhancement for proxy 
> support that should fix this problem. For now, one hack might be to include 
> the username and password in the host argument alone with the url/ip. It's 
> not intended to be used that way as it was originally designed, though. 
>
> Thanks,
> Yin, AdWords API Team. 
>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/cb2a3e4d-4b84-4645-b556-ebad4b2d3cc4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


AdWords Python API: Passing Proxy Username and Password

2016-03-31 Thread F D
Hi there,

I'm running into a bit of an issue as I'm behind a corp firewall which 
requires traffic to go through a proxy and also needs authentication.

I'm just loading a credentials file using the method
AdWordsClient.LoadFromStorage("/path/to/myfile")
which will throw the following error:

HTTPError: (407, 'Proxy Authentication Required')

I believe the client will call the OAuth library and try and refresh the 
necessary tokens., but looking at the following code shows that proxy_user 
and proxy_pass are never sent to *httplib2.ProxyInfo *

Specifically this line of 
code: 
https://github.com/googleads/googleads-python-lib/blob/69369aedffae9be1a3059b62acd7900ddb43df1e/googleads/common.py#L118

I was thinking of opening an issue but figure I should ask as maybe I'm 
missing something in terms of a work around.

Thanks in advance
F D.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/40e5493d-0589-462a-aa32-4d058541a53c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Error Fetching http body, No Content-Length, connection closed or chunked data

2016-03-14 Thread Willy D
Hi Yin,

Thanks for the reply.

So confirm there was some changes on the API right? 

Is there any temporary solution for PHP 5.2 user?

Thanks again in advance.

Best Regards,
Willy

On Monday, March 14, 2016 at 10:41:07 PM UTC+8, Yin Niu wrote:
>
> Hi Wily, 
>
> The PHP client library  
> <https://github.com/googleads/googleads-php-lib>requires 
> PHP 5.3 and higher. So you might need to upgrade PHP to at least 5.3 as 
> suggested in the forum discussion you have found. 
>
> Thanks,
> Yin, AdWords API Team. 
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/401b717a-2bd4-4416-8e88-57d6fcf0de98%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Error Fetching http body, No Content-Length, connection closed or chunked data

2016-03-14 Thread Willy D
Hi,

Since Saturday, I got this error message for all my Adwords API update:
Error Fetching http body, No Content-Length, connection closed or chunked 
data

There is no code changes or server settings changes these few months. 
Everything works as usual until yesterday.

I am using PHP5.2.17 and Adwords API v201506. 
I searched through the forum and found similar case: 
https://groups.google.com/forum/#!topic/adwords-api/qY4mzHjtun0
which suggested to upgrade to at least PHP5.3, but the strange part is that 
it I was using PHP5.2.x all the way (due to complexity I wasn't able to 
upgrade to later version yet) but it was working before.

Is there any changes in the API recently?
Anyone experiencing the same?

Any help is very much appreciated.

Thanks & Best Regards,
Willy

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/a9a092a0-6450-4da9-b21d-14030fb2b6d6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Getting empty string error when trying to get campaigns

2016-03-14 Thread Willy D
Hi Ray,

This error just happened to me last Saturday. It was working fine before 
and no code change or server configuration change. 

I am using PHP5.2.17, and unable to upgrade it to later version. Is there 
solution or temporary solution for this?

Since it was working fine before using PHP5.2.17 as well, not sure what 
should I do.

Please kindly help since this affecting all request to the API.

Thanks a lot in advance,
Willy

On Thursday, April 3, 2014 at 10:20:49 PM UTC+8, Ray Tsang (AdWords API 
Team) wrote:
>
> Hi All,
>
> Because PHP 5.3.x does not handle HTTP 1.1 chunked encoding properly, 
> we've updated the PHP Google Ads client library to use HTTP 1.0 for PHP 
> 5.3.x.
>
> You can download the updated client library from GitHub 
> <https://github.com/googleads/googleads-php-lib>.
>
> PHP 5.2 users take note: We are unable to force HTTP 1.0 protocol in PHP 
> 5.2.x.  PHP 5.2 has been unsupported for more than 3 years 
> <http://php.net/eol.php>.  We recommend you upgrade to a current PHP 
> version <http://us3.php.net/downloads.php> as soon as possible to avoid 
> future interruptions.
>
> Thanks,
>
> Ray Tsang - AdWords API Advisor
>
> On Friday, March 21, 2014 6:33:58 PM UTC-4, Ray Tsang (AdWords API Team) 
> wrote:
>>
>> Hi All,
>>
>> We’ve identified the cause for this issue.  The fix has been deployed and 
>> your requests should continue to work now.
>>
>> Longer Answer:
>>
>> There was a recent server change to utilize the HTTP 1.1 chunked transfer 
>> encoding.  This change affected some of the PHP platform versions that 
>> cannot properly handle HTTP 1.1 protocol with respect to chunked transfer.
>>
>> This inadvertently affects any applications/libraries using those older 
>> PHP versions, which includes the Ads PHP client library as well.
>>
>> We’ve removed chunked transfer encoding from the server side.  Your 
>> requests should continue to work now.  Your previous requests that resulted 
>> “Error Fetching http body, No Content-Length, connection closed or 
>> chunked data”  errors were processed by the AdWords API servers, but the 
>> SOAP response could not be decoded due to the aforementioned issue related 
>> to the some of the older PHP versions.
>>
>> As far as we know, PHP 5.4 is the only version that’s completely 
>> unaffected.  All PHP 5.2 users are recommended to upgrade since PHP 5.2 has 
>> been end-of-life for more than 3 years <http://php.net/eol.php>.
>>
>> We are also working on a client library update to force HTTP 1.0 protocol 
>> if you are using an affected PHP version.  Please lookout for an update on 
>> this thread when the library is ready.
>>
>> Cheers,
>>
>> Ray Tsang - AdWords API Advisor
>>
>> On Friday, March 21, 2014 2:24:01 PM UTC-4, Rob Rudnicki wrote:
>>>
>>> for those looking at this thread for updates. The issues seems to have 
>>> been resolved.  I had the issue earlier but no longer.
>>>
>>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/fee0608b-512a-4ec6-8d64-6c8bf7fce262%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: UAC (Universal app campaigns) support in the API

2016-03-07 Thread Cesar D.
Hi Umesh,

It's been 5 months down the road and a new API version has been 
released. I couldn't find anything about it in the release notes. Is the 
situation still the same regarding Universal App Campaigns?

Thanks,
César

On Wednesday, October 28, 2015 at 3:52:30 PM UTC+1, Umesh Dengale wrote:
>
> Hello,
>
> Currently, the AdWords API (including API reports) do not support the 
> Universal App Campaigns. We can't comment on any future features of 
> AdWords API. Please keep an eye on our AdWords API blog 
> <http://googleadsdeveloper.blogspot.com/> for any updates or 
> announcements.
>
> Thanks,
> Umesh, AdWords API Team.
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/6b443dcf-a6da-4914-a41a-b539e6999b3d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


How do I get an access token for Adwords?

2015-11-30 Thread Walid D
Hi, 

I want to automate my keyword research, and as far as I understand, I have 
to get an access token for my PHP code.  (adding it to the auth.ini file) 
I am trying to follow this 
guide: https://developers.google.com/adwords/api/docs/guides/start 
I just cant find the right place to get my access token. 
I already have an account (by clicking 'sign in' in the top right just gets 
me signed in..) 
Can you please help me find the right way to get the access token?  

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/081abb50-9133-46e9-ad4c-a1199d961de9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Issues with ManagedCustomerService, field CanManageClients

2015-09-04 Thread Cesar D.
Is there and ETA for a solution? I also need a fix for this.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/f82bf6c1-ba33-4312-9df7-b39848704d59%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


  1   2   >