How to add new customers to user list in Ads API

2020-10-20 Thread Wonkeun Song
Hello. WE are doing migration from Google Adwords API to Ads API. In the Google Adwords API, we can add or delete some customers from user list with "MutateMembersOperation" and ADD/REMOVE operators. However, we researched the Ads API and we got that there only exist create/update/delete

Re: Add new customers to user list

2020-10-20 Thread Karan
with a 'ADD' operator in mutateMembers() will the new data get appended onto the existing customers in that list? because 'SET' operator is not supported In this case. P.S. I am using python client. On Tuesday, October 20, 2020 at 9:26:25 PM UTC+5:30 adsapiforumadvisor wrote: > Hi Karan, > >

Re: How to search campaign level data from feed_item

2020-10-20 Thread Xueyao Yang
Thanks for your reply. I could get feed item related data from feed_item/extension_feed_item, but I couldn't get campaign related data from feed_item/extension_feed_item. If I query campaign.id/campaign.resource_name from feed_item/extension_feed_item without filter, I cannot get data . The

RE: Google Ads SearchStream method returns nothing and V5 API returns 404

2020-10-20 Thread Google Ads API Forum Advisor Prod
Hi Sahir, Thank you for your email. So I can investigate, could you provide your customer ID, the query, and the complete request and response logs of your Google Ads API v5 requests that did not return results and also encountered the 404 error? In addition, could you confirm if you are also

RE: How to create a ad group with the type is shopping - showcase?

2020-10-20 Thread Google Ads API Forum Advisor Prod
Hi, Thanks for posting your concern. On the Google Ads API perspective, shopping showcase ads will not be available here as discussed on this guide. With this, creation of shopping showcase ad group and campaign will not be possible also on Google Ads API. Let me know if you have further

Re: Gender and Age Range Performance Reports are very slow

2020-10-20 Thread theadsguy
Yes, it's consistently higher. I also counted the number of lines my report aggregator is reading from each of the streams, and for some reason the number of lines for gender and age range are MANY times higher: campaign performance lines: 3680 Time for campaign performance report

Re: What services would I need for getting costs?

2020-10-20 Thread Samir Sabri
Thank you for the clarification. Regards, Samir On Tue, 20 Oct 2020, 22:53 Google Ads API Forum Advisor Prod, < adsapiforumadvi...@gmail.com> wrote: > Hi Samir, > > If you are only going to use the API for reporting, then you will not need > services. Services are used to manage different

Re: How to detect - Ad REMOVED

2020-10-20 Thread Google Ads API Forum Advisor Prod
Hi, Thanks for the clarification and providing further details. To further investigate why the change_status is returning an empty report, could you also provide the complete response logs of this query and the customer ID via Reply privately to author option? Regards, Ernie John Blanca

How can I remove user list with Googe Ads API?

2020-10-20 Thread 리유나
Hello, I am trying to remove user list with Google Ads API and Python. Unfortunately, it doesn't work. user_list_operation = UserListOperation() user_list_operation.remove = f "customers/{customer_id}/userLists/{userListId}" user_list_response =

RE: Gender and Age Range Performance Reports are very slow

2020-10-20 Thread Google Ads API Forum Advisor Prod
Hello, Thank you for your patience on this inquiry. Can you please provide us with the full request and response logs associated with each of these queries? Also, can you please confirm if this discrepancy happens on a consistent basis? Thanks, Matt Google Ads API Team Matt Google Ads API

RE: Accounts accessible through adwords API but not Google ads API?

2020-10-20 Thread Google Ads API Forum Advisor Prod
Hi Theo, Thanks for reaching out. Could you please share the complete request and response logs along with the client customer id via the Reply privately to author option for us to further investigate? Thanks and regards, Xiaoming, Google Ads API Team Xiaoming Google Ads API Team

CAMPAIGN_LOCATION_TARGET_REPORT Location IDs Mapping question

2020-10-20 Thread Jack
Hello, I am unable to map Location IDs to the GEO Code/ID massive file that Google Ads posted. My IDs are 12 in length in the report, and the Criteria IDs in the file are all 6 in length. Do you know why this location ID for example isn't available in the look up table, 916282260922? Do I

Re: How to create a ad group with the type is shopping - showcase?

2020-10-20 Thread Nguyen Mark
Noted. i am using the google ads php https://github.com/googleads/google-ads-php [image: ads.PNG] Vào lúc 23:39:24 UTC+7 ngày Thứ Ba, 20 tháng 10, 2020, Nguyen Mark đã viết: > Hi there > > I am doing with google ads API, on the UI easily to create a campaign with > ad group type is `shopping

Re: What services would I need for getting costs?

2020-10-20 Thread Samir Sabri
Hello Anthony Thanks for your reply, I am applying to basic access level. As the design document is required, this doc is provided as an example, therefore I need to know which services would I need. The

RE: What services would I need for getting costs?

2020-10-20 Thread Google Ads API Forum Advisor Prod
Hi Samir, Services such as CampaignService or AdGroupService do not contain metrics such as costs. You will need to run a report based on the entity you need. For example, campaigns will use the Campaign Performance Report. Cheers, Anthony Google Ads API Team Anthony Google Ads API Team

RE: Splitting campaign spend by city

2020-10-20 Thread Google Ads API Forum Advisor Prod
Hi Erik, I recommend using the geographic_view since this will give you data on the physical location of the user or an area of interest rather than targeted locations. Cheers, Anthony Google Ads API Team Anthony Google Ads API Team ref:_00D1U1174p._5004Q26AdOm:ref -- --

Re: How to search campaign level data from feed_item

2020-10-20 Thread Google Ads API Forum Advisor Prod
Hello, You should also be able to get feed item data using the extension_feed_item report. Please try this report and let me know if you still face issues. Cheers, Anthony Google Ads API Team Anthony Google Ads API Team ref:_00D1U1174p._5004Q26AFo3:ref -- --

Re: Googleadwords API permission error

2020-10-20 Thread Google Ads API Forum Advisor Prod
Hi Nancy, Thanks for reaching out. Please refer to this code example on how to update a campaign and this code example for how to delete a campaign. For your second question, please try to move the class AddCampains outside the function. Alternatively, you could call the methods in the

How to create a ad group with the type is shopping - showcase?

2020-10-20 Thread Nguyen Mark
Hi there I am doing with google ads API, on the UI easily to create a campaign with ad group type is `shopping - showcase` like my capture below but via google ads API I can find out the way to set ad group type, here is my code: // Creates an ad group. $adGroup = new AdGroup([ 'name' =>

RE: Add new customers to user list

2020-10-20 Thread Google Ads API Forum Advisor Prod
Hi Karan, Thanks for reaching out. You could use the AdwordsUserListService.mutateMembers() to add members to an existing customer match list. This is an example code to create and populate a user list. You could get rid of these code snippets and set the existing userId in this line of code.

How to trigger the violating policies error of ExtensionFeedItem

2020-10-20 Thread Xueyao Yang
Hi, I am writing some tests for verifying my codes which using FeedItemService and ExtensionFeedItemService. I want to know how to trigger the FeedItemValidationError or PolicyTopicEntryor or FeedItemQualityDisapprovalReason of FeedItem PolicyInfos? I tried to set phone number violate policy

Accounts accessible through adwords API but not Google ads API?

2020-10-20 Thread the...@funnel.io
Hi, During our work with migrating fully from the adwords API to Google Ads, we've noticed that one ad account belonging to one of our clients can be accessed through the adwords API, but when we try accessing it through the Google Ads API, we get the error "Authentication of the request

How to retrieve audience (userList) shared by another MCC account

2020-10-20 Thread 'Lauren Fu' via AdWords API and Google Ads API Forum
Hi API team, May I know how to retrieve audience (userList) shared by another MCC account? Let's say I have MCC A and shared its audience (userList) with MCC B, which operation is done in Google Ads UI (HC ). Then how can I get all

Unrecognized fields in ad_group_ad

2020-10-20 Thread Eleni Lianou
Hello, I'm trying to get the policy summary from the ad_group_ad, but I get an error : "Unrecognized fields in the query: 'ad_group_ad.policy_summary.review_status', 'ad_group_ad.policy_summary.approval_status'." I use the following query: SELECT ad_group.id , ad_group.resource_name ,

Re: Googleadwords API permission error

2020-10-20 Thread Nancy Turner
Hello I have create test file and set AddCampaign example in it. This file code working on test file and add campaign in client account successfully. Now i am trying to set this example code in my function like below. https://prnt.sc/v325dn But OOP concept not working inside function().

Re: Audience Sources : Google Ads Tag : Parameter Key and Values via API

2020-10-20 Thread Pete Lavetsky (AdWords API Guru)
Thank you Ernie. On Monday, October 19, 2020 at 10:09:48 PM UTC-4 adsapiforumadvisor wrote: > Hi Pete, > > Thanks for the reply. I work with Peter and let me provide support to your > concern. > > I am afraid that it is currently not possible to get the Google Ads Tag > parameter key and

What services would I need for getting costs?

2020-10-20 Thread Samir Sabri
I need to get money spent on the following: - per campaign - per ad group - per keyword - per click - per converted lead Obviously, I would need: - AdGroupService v201809 - CampaignService v201809

Traffic Estimator results (AdWords API Vs Google Ads UI)

2020-10-20 Thread Rushikesh Deshmukh
Hi Team, I am currently working on the AdWords API to get the traffic estimates for certain keywords. While validating the numbers from API response, I see some differences in the results when compared with Google Ads UI results. So i need your help on following points- 1. The estimates we

Google Ads SearchStream method returns nothing and V5 API returns 404

2020-10-20 Thread Sahir Mohamed
Hi , I'm trying to fetch campaign and shopping_performance_view reports using V5 Google Ads php client library. after the authentication SearchStream method which process the query string does not return anything. Meanwhile V5 API is also returnung 404 error. And currently I'm using AdWords

Display Keyword Performance Report does not include full data

2020-10-20 Thread don....@gmail.com
Hello Google team, we are stumbled upon an issue here and hoping for your help. When accessing data from Ad Performance Report we see some ads has triggering criteria as 300 According to this https://developers.google.com/adwords/api/docs/guides/reporting?hl=zh-CN#keywordid300 we

Re: get metrics.cost by campaign and account

2020-10-20 Thread 'Nir Krumer' via AdWords API and Google Ads API Forum
Hey, I'm not sure my required data sits in *_performance_report. I want to perform something like Select campaignId, campaigName, metrics.cost from campaign I dont understand how make this query, while i have my cuatomerId & client_customer list Appreciate your help Nir בתאריך יום ב׳, 19

Re: How to detect - Ad REMOVED

2020-10-20 Thread Dmitriy P.
I need detect CHANGE STATUS in Google Ads API)) query = """ SELECT change_status.resource_name, change_status.last_change_date_time, change_status.resource_type, FROM change_status WHERE change_status.resource_status = 'REMOVED' ORDER BY

Splitting campaign spend by city

2020-10-20 Thread Erik Møiniche-Kiebe
Can I generate a query to split the campaign spend by city even though the campaign weren't targeted to specific cities? I'm currently using the query below but it seems to only work on campaigns that was targeted towards specific cities. My guess is that I should use something different than

Re: Googleadwords API permission error

2020-10-20 Thread Nancy Turner
Hello Thanks for reply. I able to test client account and campaign in list table. Now i want to update and delete this campaign using API. Can you please suggest Update and Delete campaign example in Adwords API. Thank you, Nancy On Tuesday, 20 October 2020 at 01:44:17 UTC+5:30

Add new customers to user list

2020-10-20 Thread Karan
I have created and populated a com based audience list through Adwords api. how can I add more customers in the same list through API. I see the option to do it through dashboard but can't find a documentation for doing it through API -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

RE: Campaign ProductScope: ProductTypeInfo is Empty

2020-10-20 Thread Google Ads API Forum Advisor Prod
Hi Kevin, So I can further investigate, could you provide your customer ID, and the complete request and response logs of your API transaction that returned empty results? You may send the requested information using the Reply privately to author option. Best regards, Peter Laurence Napa

Batch job returns more results than operations sent

2020-10-20 Thread wes...@channable.com
Hi Ads team, We currently are seeing a problem with some of the batch jobs we are trying to process. Right now, we are still using the Google Adwords API (v201809) for this, but we don't think the API matters in this case. The problem we are having is that we create a batch job and then

Re: How to search campaign level data from feed_item

2020-10-20 Thread Xueyao Yang
Hi, I add campaign.name or campaign.id in selected fields , but get null response. It seems that query included any campaign/ad_group/ad_group_ad related fields will return null response . But use the query "SELECT feed_item.policy_infos, feed_item.resource_name, feed_item.status FROM

Re: Empty report data from Google AdWords Api

2020-10-20 Thread Google Ads API Forum Advisor Prod
Hi Vadim, I work with Xiaoming and allow me to assist you for now. Since you are unable to reply privately, could you send all the information from this thread including the requested customer ID to our googleadsapi-supp...@google.com alias instead? Best regards, Peter Laurence Napa Oliquino