Re: How to add multiple records to members in AdwordsUserListService for customer matching?

2020-06-22 Thread abhi
Thanks for answering all of my questions Thanks, Abhi On Monday, June 22, 2020 at 11:49:14 AM UTC-6, adsapiforumadvisor wrote: > > Hi Abhi, > > If you try and add a duplicate member to a user list, the API call will > not fail but the duplicate entry will be ignored. > > Regards, > Mitchell > G

Re: How to add multiple records to members in AdwordsUserListService for customer matching?

2020-06-22 Thread Google Ads API Forum Advisor Prod
Hi Abhi, If you try and add a duplicate member to a user list, the API call will not fail but the duplicate entry will be ignored. Regards, Mitchell Google Ads API Team ref:_00D1U1174p._5004Q217MPU:ref -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog: https://go

Re: How to add multiple records to members in AdwordsUserListService for customer matching?

2020-06-22 Thread abhi
Hi Mitchell, Thanks for the input, I just have another question, how does the customer matching list handle duplicates? like what would happen if I am adding a member that already exists in the list, would it get added or the will the duplicate be ignored? On Friday, June 19, 2020 at 8:34:18 A

Re: How to add multiple records to members in AdwordsUserListService for customer matching?

2020-06-19 Thread Google Ads API Forum Advisor Prod
Hi Abhi, Yes, that looks good. Just make sure they're being added to the membersList as separate members. Regards, Mitchell Google Ads API Team ref:_00D1U1174p._5004Q217MPU:ref -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog: https://googleadsdeveloper.blogspot

Re: How to add multiple records to members in AdwordsUserListService for customer matching?

2020-06-18 Thread abhi
Hi Mitchell, Thanks for clearing that up, now I know that when there is more than one email or phone number for same person, it has to be sent as different members with change in email or phone number. also, please correct me if I am wrong, is this how the members list would look like when sam

Re: How to add multiple records to members in AdwordsUserListService for customer matching?

2020-06-18 Thread Google Ads API Forum Advisor Prod
Hi Abhi and Abhinav, @Abhi, I'm still a little confused by your scenario. Every member can have a maximum of 1 email address, 1 address, and 1 phone number. If you have three emails, you should create three separate members with all of the information the same except for the email address. Then

Re: How to add multiple records to members in AdwordsUserListService for customer matching?

2020-06-18 Thread 'Abhinav Sharma' via AdWords API and Google Ads API Forum
that. I think my question would now have > more clarity, suppose I have 1 email, 3 phone numbers, first_name, > last_name, country and zip for every member, how do I add it in the member > list for more than 1 member record using the AdwordsUserListService? I read > the docs, but that di

Re: How to add multiple records to members in AdwordsUserListService for customer matching?

2020-06-18 Thread abhi
AdwordsUserListService? I read the docs, but that didn't help me in understanding that for the above case Thanks, Abhi On Thursday, June 18, 2020 at 8:10:50 AM UTC-6, adsapiforumadvisor wrote: > > Hi Abhi, > > Thank you for reaching out. In this example, each entity in the "members" >

RE: How to add multiple records to members in AdwordsUserListService for customer matching?

2020-06-18 Thread Google Ads API Forum Advisor Prod
Hi Abhi, Thank you for reaching out. In this example, each entity in the "members" array will be a unique member. This means that each email address represents a unique member and also the address info represents a 4th unique member. This user list has a "contact info" identifier meaning that m

How to add multiple records to members in AdwordsUserListService for customer matching?

2020-06-17 Thread abhi
the documentation shows : emails = ['custom...@example.com', 'custom...@example.com', ' custom...@example.com '] members = [{'hashedEmail': NormalizeAndSHA256(email)} for email in emails] # Add address info. members.append({ 'addressInfo': { # First and last na

Re: Data Format for AdwordsUserListService

2020-06-17 Thread Google Ads API Forum Advisor Prod
Hi Qian, Thank you for reaching out. Generally speaking, it wouldn’t matter if the userId is hashed or not hashed as it is not mandatory. But I would suggest you not to hash it since it is not required and if you do so it may lead to more complexity and could be the underlying cause for the 0%

Re: Data Format for AdwordsUserListService

2020-06-16 Thread Qian Huang
Actually I asked this question since we have low audience match rate, so I am trying to verify we are sending correct data. Another question is: from Audience Manager, I can see good match rate for type "Customer contact infromation", but for type "Mobile Device IDs"(i.e. android advertising

Re: Data Format for AdwordsUserListService

2020-06-16 Thread Qian Huang
Hi Xiaoming, Thanks for reply, about those fields which need not necessarily to be hashed(especially `userId`), does it mean I can send hashed/unhashed data? Or it is mandatory these data need to be unhashed? Best Regards, Qian On Wednesday, June 17, 2020 at 2:22:02 AM UTC+8, adsapiforumadviso

RE: Data Format for AdwordsUserListService

2020-06-16 Thread Google Ads API Forum Advisor Prod
Hi Qian, Thank you for reaching out. The hashedEmail, hashedPhoneNumber and also the hashedFirstName and hashedLastName from AddressInfo object are the fields that need to be hashed. All other fields need not necessarily to be hashed. Thanks and regards, Xiaoming, Google Ads API Team ref:_00D1U

Data Format for AdwordsUserListService

2020-06-16 Thread Qian Huang
Hi team, We are uploading user list, and from https://developers.google.com/adwords/api/docs/reference/v201809/AdwordsUserListService.Member, there are several types are supported. I want to confirm with you which field could be hashed and which field must be unhashed. Best Regards, -- -

Re: Questions about How to use Google Ads API "AdwordsUserListService"

2020-01-08 Thread Su Yu
Hi Mitchell, Thanks for the quick response. Seems like the format between file and API are a little bit different, but since we are using API I will follow the example and rules you suggested. Thanks for your help. Regards, On Wednesday, January 8, 2020 at 11:45:15 AM UTC-8, adsapiforumadviso

RE: Questions about How to use Google Ads API "AdwordsUserListService"

2020-01-08 Thread Google Ads API Forum Advisor Prod
Hi Su, Thank you for reaching out. Emails should be hashed using an SHA-256 hash function. You can see this example for the Python hashing algorithm. It looks like it follows the rules outlined in this guide. Regards, Mitchell Google Ads API Team ref:_00D1U1174p._5001UOGEe8:ref -- -- =~=~=~=

Questions about How to use Google Ads API "AdwordsUserListService"

2020-01-07 Thread Su Yu
Hi Google Ads API, I have some questions about how to use Google Ads API "AdwordsUserListService" endpoint to mutate members in the user list programmatically. The documentation is not clear to me and here are my questions. Please help to clarify how to Hash email properly. In API d

Re: AdwordsUserListService : CONCRETE_TYPE_REQUIRED

2020-01-02 Thread Debashis Pradhan
nse : > > SOAP Request: > > https://adwords.google.com/api/adwords/rm/v201809/AdwordsUserListService > > http://schemas.xmlsoap.org/soap/envelope/"; > xmlns:v20="https://adwords.google.com/api/adwords/rm/v201809"; xmlns:v201=" > https://adwords.g

AdwordsUserListService : CONCRETE_TYPE_REQUIRED

2020-01-01 Thread Debashis Pradhan
missed this. Any resolution or pointers on this error is appreciated. Below is Request and Response : SOAP Request: https://adwords.google.com/api/adwords/rm/v201809/AdwordsUserListService http://schemas.xmlsoap.org/soap/envelope/"; xmlns:v20="https://adwords.google.com/api/adwords/

Re: Query for AdwordsUserListService and Device

2019-10-11 Thread Google Ads API Forum Advisor Prod
Hi Arnab, Yes, you are right. Setting the value to 0 for bid modifier is reserved for opting out of a platform or excluding the specific device as a target. For your other concern, the bid adjustments set to -100% means it will opt out showing the ads on a specified device. Let us know if you n

Re: Query for AdwordsUserListService and Device

2019-10-10 Thread Arnab Ganguly
tService.mutate() > <https://developers.google.com/adwords/api/docs/reference/v201809/AdwordsUserListService#mutate_1> > > then afterwards, upload members > <https://developers.google.com/adwords/api/docs/reference/v201809/AdwordsUserListService.Member> > > u

RE: Query for AdwordsUserListService and Device

2019-10-09 Thread Google Ads API Forum Advisor Prod
Hi Arnab, What is currently available via the AdWords API is to create a userList using the AdwordsUserListService.mutate() then afterwards, upload members using the AdwordsUserListService.mutateMembers() containing the mobileId details. You may refer to this section of our remarketing and audi

Query for AdwordsUserListService and Device

2019-10-09 Thread Arnab Ganguly
Hello All, Can I create a AdwordsUserListService where I want to mention the device details like (Mobile/Desktop+Tablet) and that user_list can be part of CriterionUserList and finally part of BiddableAdGroupCriterion wrt to add_group_id. I am basically looking for to include device type

RE: AdwordsUserListService fields

2019-09-29 Thread Google Ads API Forum Advisor Prod
Hi, Thank you for posting your concern. You may refer to this guide to see the available field for the AdwordsUserListService. However, currently it's not possible to get create time of the userlist via this service. With regard to use status, there are several available status fields

AdwordsUserListService fields

2019-09-28 Thread maltose
*Hello,* *I'm using AdwordsUserListService to query the list. I can't find fields such as create time, use status,Please give me fields help* -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog: https://googleadsdeveloper.bl

Re: Adwordsuserlistservice

2019-09-11 Thread Google Ads API Forum Advisor Prod
Hello, Unfortunately, we don't have any samples on how to do this using Google Ads API. You will need to use the UserListService. Regards, Anthony Google Ads API Team ref:_00D1U1174p._5001UBlvql:ref -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog: https://googl

Re: Adwordsuserlistservice

2019-09-10 Thread andryushka x
Hi Hiroyuki, Is there an example or guide on how to do exactly this using the new Google Ads API? On Friday, June 7, 2019 at 12:35:35 AM UTC-7, adsapiforumadvisor wrote: > > Hi Shweta, > > The AdWordsUserListService can be used to manage and create user lists. > However, it i

Re: How to use AdWordsUserListService on an existing campaign/adgroups

2019-09-08 Thread Google Ads API Forum Advisor Prod
Hi Arnab, Thank you for clarifying your concern. Each email of the user will be contained within the Member object and each member will become collectively as the audience of your UserList object. You will need to create one Member object per each email that you wish to include in your userlis

Re: How to use AdWordsUserListService on an existing campaign/adgroups

2019-09-06 Thread Arnab Ganguly
t not clear as how it is included in campaign. On Friday, September 6, 2019 at 4:03:13 AM UTC-4, adsapiforumadvisor wrote: > > Hi Arnab, > > Thank you for posting your concern. > > The AdwordsUserListService > <https://developers.google.com/adwords/api/docs/reference/v2

RE: How to use AdWordsUserListService on an existing campaign/adgroups

2019-09-06 Thread Google Ads API Forum Advisor Prod
Hi Arnab, Thank you for posting your concern. The AdwordsUserListService is used to manage user lists by using get, mutate and mutateMembers methods. Please see the provided link for more details. So I can provide proper support, could you further elaborate what you are trying to achieve

How to use AdWordsUserListService on an existing campaign/adgroups

2019-09-05 Thread Arnab Ganguly
*Hello,* *I want to use AdWordsUserListService <https://developers.google.com/adwords/api/docs/reference/v201809/AdwordsUserListService#get> on an existing campagin,adgroups etc.I don't see it takes any of the respective ids as inputs.How do I do that.Any sample examples would be

Re: AdwordsUserListService MutateMembers performance

2019-07-09 Thread 'Chuck Dusseau' via AdWords API and Google Ads API Forum
9, 2019 at 12:01 AM Google Ads API Forum Advisor Prod < adsapiforumadvi...@gmail.com> wrote: > Hi Chuck, > > Could you elaborate on what your client meant by "drop in throughput"? Did > the client encounter any latency issues when using the > AdwordsUserListService?

RE: AdwordsUserListService MutateMembers performance

2019-07-09 Thread Google Ads API Forum Advisor Prod
Hi Chuck, Could you elaborate on what your client meant by "drop in throughput"? Did the client encounter any latency issues when using the AdwordsUserListService? As for our recommendations, it would be best not to run parallel requests to a single entity as it might indeed

AdwordsUserListService MutateMembers performance

2019-07-08 Thread 'Chuck Dusseau' via AdWords API and Google Ads API Forum
Hi, Our client has noticed a drop in throughput since the end of June when using *MutateMembers* on *AdwordsUserListService* (v201809) to maintain their audiences. They are looking to get some advice on scaling and increasing their throughput. Currently they are constantly uploading users

Re: Unable to create LogicalUserList via Adwords API AdwordsUserListService

2019-07-02 Thread Sanjay Hallan
Hi, Sorry for the late reply. I got past this blocker by using the new Google Ads API instead. Thanks Sanjay On Wednesday, June 26, 2019 at 6:14:11 PM UTC+1, adsapiforumadvisor wrote: > > Hello Sanjay, > > Could you please share the complete SOAP logs of the error by enabling > logging as sh

RE: Unable to create LogicalUserList via Adwords API AdwordsUserListService

2019-06-26 Thread Google Ads API Forum Advisor Prod
Hello Sanjay, Could you please share the complete SOAP logs of the error by enabling logging as shown here . Regards Sai Teja, Google Ads API Team ref:_00D1U1174p._5001UCZZcH:ref -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog: https://googleadsdeveloper.blogsp

Unable to create LogicalUserList via Adwords API AdwordsUserListService

2019-06-26 Thread Sanjay Hallan
'id': 814854591 }] }, { 'operator': 'NONE', 'ruleOperands': [{ 'xsi_type': 'BasicUserList', 'id': 814854611 }, { 'xsi_type&

RE: Adwordsuserlistservice

2019-06-07 Thread Google Ads API Forum Advisor Prod
Hi Shweta, The AdWordsUserListService can be used to manage and create user lists. However, it is currently not possible to Remove the complete user list using the AdWordsUserListService.mutate() as the REMOVE operator is not supported. You may refer to this sample on how to create and

Adwordsuserlistservice

2019-06-06 Thread Shweta CHOUDHARY
Hi , How can I upload a list of users using Adwordsuserlistservice for both addition and removal Two types list will be CRM based- CONTACT_INFO and CRM based- MOBILE_ADVERTISING_ID Could you please share sample code in python using http call

RE: StringRuleItem length for AdwordsUserListService

2019-04-29 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum
Hi Lóránd, If you're referring to the maximum length of the StringRuleItem key , please note that this should consist of UTF8 code that is greater than 127 and consist of US-ascii letters or digits

Re: StringRuleItem length for AdwordsUserListService

2019-04-28 Thread Lóránd Balog
Hi Bharani, How can I do that through C# AdWords Library? 2019. április 26., péntek 21:02:16 UTC+2 időpontban googleadsapi-forumadvisor a következőt írta: > > Hi Lorand, > > Could you please share the API SOAP logs for the error that you're > receiving to check this further? You can reply back

RE: StringRuleItem length for AdwordsUserListService

2019-04-26 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum
Hi Lorand, Could you please share the API SOAP logs for the error that you're receiving to check this further? You can reply back via Reply privately to author option. Regards, Bharani, Google Ads API Team =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and discussion

StringRuleItem length for AdwordsUserListService

2019-04-26 Thread Lóránd Balog
Hi Google Team! I would like to ask you about the maximum length of a StringRuleItem connected to UserLists ( https://developers.google.com/adwords/api/docs/reference/v201809/AdwordsUserListService.StringRuleItem ) I got StringLengthError.TOO_LONG exception, could you please tell me what is the

Re: No group found for service: v201809.AdwordsUserListService

2019-04-15 Thread kumareshan.e via AdWords API and Google Ads API Forum
/adwords/api/community/ > On 04/12/19 22:23:28 kumar...@manthan.com wrote: > > We are upgrading from v201708 to v201809. But we are facing this issue. > > *"No group found for service: v201809.AdwordsUserListService".* > > We are using the AddAudience.java > <h

RE: No group found for service: v201809.AdwordsUserListService

2019-04-14 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum
am On 04/12/19 22:23:28 kumaresha...@manthan.com wrote: We are upgrading from v201708 to v201809. But we are facing this issue. *"No group found for service: v201809.AdwordsUserListService".* We are using the AddAudience.java <https://github.com/googleads/goog

No group found for service: v201809.AdwordsUserListService

2019-04-12 Thread kumareshan.e via AdWords API and Google Ads API Forum
We are upgrading from v201708 to v201809. But we are facing this issue. *"No group found for service: v201809.AdwordsUserListService".* We are using the AddAudience.java <https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/examples/adw

RE: /api/adwords/rm/v201809/AdwordsUserListService throwing UNEXPECTED_INTERNAL_API_ERROR

2019-03-12 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum
/AdwordsUserListService for the past week now. http://schemas.xmlsoap.org/soap/envelope/";> soap:Server InternalApiError.UNEXPECTED_INTERNAL_API_ERROR @ com.google.ads.api.services.common.error.InternalApiError.<init>(InternalApiErro https://adwords.google.com/api/adwords/cm/v201809"

/api/adwords/rm/v201809/AdwordsUserListService throwing UNEXPECTED_INTERNAL_API_ERROR

2019-03-12 Thread danny
Hi, We have been seeing UNEXPECTED_INTERNAL_API_ERROR thrown by https://adwords.google.com/api/adwords/rm/v201809/AdwordsUserListService for the past week now. http://schemas.xmlsoap.org/soap/envelope/";> soap:Server InternalApiError.UNEXPECTED_INTERNAL_A

Re: UserList bug from AdwordsUserListService

2019-02-15 Thread Han Vo
Thanks for the quick response! On Friday, February 15, 2019 at 3:58:17 PM UTC-5, googleadsapi-forumadvisor wrote: > > Hi Han, > > I got a quick response from the API team. It turns out this is expected > behavior for the AdWords API. > > The good news is that this behavior is specific to *Simila

RE: UserList bug from AdwordsUserListService

2019-02-15 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum
Hi Han, I got a quick response from the API team. It turns out this is expected behavior for the AdWords API. The good news is that this behavior is specific to *SimilarUserLists*. Therefore, if you use the predicate I shared in my previous post, you won't get back multiple records when using a

Re: UserList bug from AdwordsUserListService

2019-02-15 Thread Han Vo
Awesome, thanks for the update! On Fri, Feb 15, 2019 at 3:14 PM wrote: > Hi, > > I was able to reproduce the issue you described and I've reported it to > the user list team. I'll reply back here as I receive updates from them. > > As a workaround, you could either select lists by *Id* instead,

RE: UserList bug from AdwordsUserListService

2019-02-15 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum
Hi, I was able to reproduce the issue you described and I've reported it to the user list team. I'll reply back here as I receive updates from them. As a workaround, you could either select lists by *Id* instead, or add additional filters to exclude the unwanted records. For example, if Similar

RE: UserList bug from AdwordsUserListService

2019-02-14 Thread Han Vo
Hi Peter, Thanks for response. If you take a look at my SOAP request, i was asking the API for the UserList with the exact name. The API was returning the additional object with a similiar name which is unexpected from the API consumer perspective. So you confirm this is an expected behavior? Th

RE: UserList bug from AdwordsUserListService

2019-02-14 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum
a bug asking AdwordsUserListService for UserList with the exact name. Google seems to return the extra automated created object (by Google) within the response, however this object doesn't have the exact name I was asking for. Please take a look at the request and response for clarification. For now

UserList bug from AdwordsUserListService

2019-02-14 Thread Han Vo
Hi there, I think i have encountered a bug asking AdwordsUserListService for UserList with the exact name. Google seems to return the extra automated created object (by Google) within the response, however this object doesn't have the exact name I was asking for. Please take a look a

RE: 'invalid_grant: Bad Request' for AdwordsUserListService mutate call ...

2019-02-12 Thread googleadsapi-forumadvisor via AdWords API and Google Ads API Forum
Hi Tom, The usual reason for having the invalid_grant issue is due to an expired refreshToken. However, I would like to recommend that you regenerate all your OAuth2 credentials including the client_id and client_secret an

'invalid_grant: Bad Request' for AdwordsUserListService mutate call ...

2019-02-12 Thread tom
I have read through the variety of "invalid_grant" questions on this board, but unfortunately didn't find anything that helped resolve my particular issue. I am trying to get the samples working with the following config in my googleads.yaml: * # This token has been approved and has Access le

"invalid_grant" for the AdwordsUserListService mutate call.

2019-02-12 Thread tom
I have read through the variety of "invalid_grant" questions on this board, but unfortunately didn't find anything that helped resolve my particular issue. I am trying to get the samples working with the following config in my googleads.yaml: # This token has been approved and has Access lev

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.blo

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

2018-12-04 Thread 'Dannison Yao (AdWords API Team)' via AdWords API and Google Ads API Forum
wrote: > > 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

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 the

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

2018-12-03 Thread 'Dannison Yao (AdWords API Team)' via AdWords API and Google Ads API Forum
ng the AdwordsUserListService.get() <https://developers.google.com/adwords/api/docs/reference/v201809/AdwordsUserListService#get> and see if the results will return the user list Id you have specified? If it was not returned, this means that the user list id you specified does not belong to the acc

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

Re: How do I remove the audience using the AdwordsUserListService?

2018-11-16 Thread jia zheng
Can you give me an example of an XML delete audience? 在 2018年11月16日星期五 UTC+8下午3:57:01,Luis Xander Talag (AdWords API Team)写道: > > Hi Jia, > > The AdWordsUserListService > <https://developers.google.com/adwords/api/docs/reference/v201809/AdwordsUserListService> > is >

Re: How do I remove the audience using the AdwordsUserListService?

2018-11-15 Thread 'Luis Xander Talag (AdWords API Team)' via AdWords API and Google Ads API Forum
Hi Jia, The AdWordsUserListService <https://developers.google.com/adwords/api/docs/reference/v201809/AdwordsUserListService> is used to manage user lists. Currently, it is not possible to remove the complete user list using the AdWordsUserListService.mutate() <https://developers.g

How do I remove the audience using the AdwordsUserListService?

2018-11-15 Thread jia zheng
When I use the following request https://adwords.google.com/api/adwords/rm/v201802";> REMOVE 736723029 Error returned: [{"faultcode":["soap:Client"],"faultstring":["[OperatorError.OPERATOR_NOT_SUPPORTED @ operations[0]]"],"detail":[{"ApiExceptionFault":[{"$":{"xmlns":"https://adwords.goog

Re: AdwordsUserListService Return Null in ListType

2018-10-18 Thread 'Dannison Yao (AdWords API Team)' via AdWords API and Google Ads API Forum
eads discussing a similar issue > (link below), I wanted to confirm if this is still the case, and if there > is any workaround to determining if RULE-BASED UserLists Types can be > pulled. > > > https://groups.google.com/forum/#!searchin/adwords-api/adwordsuserlistservi

AdwordsUserListService Return Null in ListType

2018-10-18 Thread dgarcia
is any workaround to determining if RULE-BASED UserLists Types can be pulled. https://groups.google.com/forum/#!searchin/adwords-api/adwordsuserlistservice$20listtype|sort:date/adwords-api/IGUX7BE7E2A/RKbI2OCvAwAJ -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog

Adwords API AdwordsUserListService - Getting Whitelisted for AddressInfo Identifier

2018-10-04 Thread Danny Madigan
I am looking to expand our Google Customer Match integration to support “AddressInfo,” however in this page ( https://developers.google.com/adwords/api/docs/reference/v201809/AdwordsUserListService.AddressInfo) it says that Address identifier is accessible for whitelisted customers only. I wan

Re: OperatorError.OPERATOR_NOT_SUPPORTED in AdwordsUserListService v201806

2018-06-12 Thread Vilen Topchii
1 > will > A list of mars cruise customers in the > last year > OPEN > 365 > > > > > > > &

Re: OperatorError.OPERATOR_NOT_SUPPORTED in AdwordsUserListService v201806

2018-06-11 Thread 'Luis Xander Talag (AdWords API Team)' via AdWords API and Google Ads API Forum
Hi Vilen, Based on your logs, you did not specify a concrete type of UserListOperation in your operand which might have caused the error. You may look up to this sample code

OperatorError.OPERATOR_NOT_SUPPORTED in AdwordsUserListService v201806

2018-06-11 Thread Vilen Topchii
1 will A list of mars cruise customers in the last year OPEN 365 URL: https://adwords.google.com/api/adwords/rm/v201806/AdwordsUserListService -

Re: Limit on Email addresses upload using AdWordsUserListService

2018-05-09 Thread 'Peter Oliquino (AdWords API Team)' via AdWords API and Google Ads API Forum
Hi Sachin, As mentioned under the "Caveats" section in this guide , the actual limit imposed by the AdWords API is 1,000,000 members

Limit on Email addresses upload using AdWordsUserListService

2018-05-09 Thread Sachin Sudarshana
Hi, I'm trying to use the API (v201802) to upload email addresses from a csv (crmbasedUserList) to a Customer List using the mutate members function of AdWordsUserListService. I read in an earlier ( old) post in this is forum that "You can add a maximum of 10, 000 email addresse

Re: New error only in mutate AdwordsUserListService calls: QuotaCheckError.INVALID_TOKEN_HEADER @

2018-04-13 Thread 'Sreelakshmi Sasidharan (AdWords API Team)' via AdWords API Forum
Hi All, This issue is resolved now and you are not expected to see any more failures. Please let us know if you are still encountering the INVALID_TOKEN_HEADER error. Thanks, Sreelakshmi, AdWords API Team -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Go

Re: New error only in mutate AdwordsUserListService calls: QuotaCheckError.INVALID_TOKEN_HEADER @

2018-04-10 Thread 'Sreelakshmi Sasidharan (AdWords API Team)' via AdWords API Forum
Hi, Our team is actively working on fixing this issue. I will keep you posted on the updates. Thanks, Sreelakshmi, AdWords API Team -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: https://googleadsdeveloper.blogspot.com/ https://plus.google.com/+G

Re: New error only in mutate AdwordsUserListService calls: QuotaCheckError.INVALID_TOKEN_HEADER @

2018-04-10 Thread 'Sreelakshmi Sasidharan (AdWords API Team)' via AdWords API Forum
Hi, We are currently looking into this issue, will update you soon on what we find. Thanks, Sreelakshmi, AdWords API Team -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: https://googleadsdeveloper.blogspot.com/ https://plus.google.com/+GoogleAdsD

Re: New error only in mutate AdwordsUserListService calls: QuotaCheckError.INVALID_TOKEN_HEADER @

2018-04-10 Thread 'Sreelakshmi Sasidharan (AdWords API Team)' via AdWords API Forum
#!topic/adwords-api/bBdNvBqDx1I> before posting. Re-posting this with masked information: "I've a suite test, performing some basic test every day to adwords api, using soap calls. Today I saw a regression in call: URL: https://adwords.google.com/api/adwords/rm/v201802/ AdwordsUse

New error only in mutate AdwordsUserListService calls: QuotaCheckError.INVALID_TOKEN_HEADER @

2018-04-10 Thread dev-test
Hello, I've a suite test, performing some basic test every day to adwords api, using soap calls. Today I saw a regression in call: URL: https://adwords.google.com/api/adwords/rm/v201802/AdwordsUserListService Headers: {headers={Authorization=Bearer

Re: "Dynamic Remarketing" List is shown as 'Unknown' list type when downloading it via AdWordsUserListService

2018-03-08 Thread Jianbo zhu
Thanks, Peter. Here is the log I can find: 2018-03-09 03:19:19.0737463 Request made: Host: adwords.google.com, Service: AdwordsUserListService, Method: get, clientCustomerId: , Request ID: , ResponseTime(ms): 0, OperationsCount: 0, IsFault: False, FaultMessage: The google customer id is: 940-532

Re: "Dynamic Remarketing" List is shown as 'Unknown' list type when downloading it via AdWordsUserListService

2018-03-07 Thread 'Peter Oliquino' via AdWords API Forum
Hi Jianbo, In order to better investigate your issue, could you send to me the complete SOAP request and response that was generated when you got the 'UNKNOWN' list type result? You may reply using the *Reply privately to author* option. Best regards, Peter AdWords API Team -- -- =~=~=~=~=~

"Dynamic Remarketing" List is shown as 'Unknown' list type when downloading it via AdWordsUserListService

2018-03-07 Thread Jianbo zhu
Hi, Adwords team, I got one question about AdWordsUserListService <https://developers.google.com/adwords/api/docs/reference/v201710/AdwordsUserListService>. For those 'dynamic remarketing' user list created in Adwwords UI, the list type <https://developers.google.c

Re: What is the process to get whitelisted to use the AdwordsUserListService mutateMembers operation?

2018-02-26 Thread 'Peter Oliquino' via AdWords API Forum
Hi Alex, The mutateMembers() <https://developers.google.com/adwords/api/docs/reference/v201710/AdwordsUserListService#mutatemembers> method does not really require any whitelisting, however, utilizing some of the fields in the Member <https://developers.google.com/adwords/api/docs/

What is the process to get whitelisted to use the AdwordsUserListService mutateMembers operation?

2018-02-26 Thread Alex Leventer
What is the process to get whitelisted to use the AdwordsUserListService mutateMembers operation? I get the following error when I attempt to add a member to a list: NotWhitelistedError.CUSTOMER_NOT_WHITELISTED_FOR_API Thanks, Alex -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also

Re: AdWordsUserListService ExpressionRuleUserList Rule item mismatch

2017-08-23 Thread Edward Grave
Ok thanks, i have done that now. -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: https://googleadsdeveloper.blogspot.com/ https://plus.google.com/+GoogleAdsDevelopers/posts =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ You received this message be

Re: AdWordsUserListService ExpressionRuleUserList Rule item mismatch

2017-08-22 Thread 'Sreelakshmi Sasidharan (AdWords API Team)' via AdWords API Forum
Hi Edward, Since this is specific to .Net library, could you please post this on the issues tracker so that the library owner can take a look at this? Thanks, Sreelakshmi, AdWords API Team -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

Re: AdWordsUserListService ExpressionRuleUserList Rule item mismatch

2017-08-22 Thread Edward Grave
Sorry, i didn't mean a multi-dimensional array. It's an array of arrays that the reference.cs has for the groups property. On Tuesday, 22 August 2017 16:40:40 UTC+1, Edward Grave wrote: > > Hi Sreelakshmi, > > I can confirm the WSDL matches what you state, however, when pulling this > in Visual

Re: AdWordsUserListService ExpressionRuleUserList Rule item mismatch

2017-08-22 Thread Edward Grave
Hi Sreelakshmi, I can confirm the WSDL matches what you state, however, when pulling this in Visual Studio as a service reference I see no mention in the Reference.cs file of an RuleItemGroup object. public partial class Rule : object, System.ComponentModel.INotifyPropertyChanged {

Re: AdWordsUserListService ExpressionRuleUserList Rule item mismatch

2017-08-21 Thread 'Sreelakshmi Sasidharan (AdWords API Team)' via AdWords API Forum
uleItemGroup> -> items(RuleItem[]) <https://developers.google.com/adwords/api/docs/reference/v201708/AdwordsUserListService.RuleItem>. In the WSDL <https://adwords.google.com/api/adwords/rm/v201708/AdwordsUserListService?wsdl> , you should be able to find the definitio

AdWordsUserListService ExpressionRuleUserList Rule item mismatch

2017-08-21 Thread Edward Grave
Hi, I'm looking through the documentation and comparing it to the code produced by the WSDL for the AdWordsUserListService. I've noticed a discrepancy that is causing errors in my code when calling the get function. I'm consuming the endpoint from a C# client. >From w

Re: AdwordsUserListService (v201702)

2017-06-07 Thread 'Peter Oliquino' via AdWords API Forum
Hi, Could you confirm if you still require any assistance regarding this issue? Best regards, Peter AdWords API Team -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: https://googleadsdeveloper.blogspot.com/ https://plus.google.com/+GoogleAdsDeveloper

Re: AdwordsUserListService (v201702)

2017-05-29 Thread 'Peter Oliquino' via AdWords API Forum
Hi, To help us investigate further, could you reply to us privately (using *reply privately to author* option) with the account ID in question as well as the SOAP request and response logs captured for the AdwordsUserListService of that account ID? Best regards, Peter AdWords API Team

AdwordsUserListService (v201702)

2017-05-29 Thread Spain Api
Hi all, I'm using AdWordsService.v201702.AdwordsUserListService to get the name of my criterias into AUDIENCE_PERFORMANCE_REPORT and I call at the service for each account id, but there is one what is returning a null. The rest of my accounts id is working fine. This is my code:

Re: AdwordsUserListService and youtube remarketing

2016-12-27 Thread 'Joyce Lava' via AdWords API Forum
Hi Rob, Apologies for the delay. Currently, the API only supports "Visitors of a page" (ExpressionRuleUserList ) and "Visitors of a page during specific dates" (DateSpecificRuleUserL

AdwordsUserListService and Youtube Rule based lists

2016-12-26 Thread Rob Thamer
I actually attempted to post earlier and my post is not showing up currently so I apologize if this is a duplicated question - I am attempted to create a UserList, that is Rule Based - the rule being that the user has "Viewed certain video(s) as ad(s)" as specified in the api. I do not see an

AdwordsUserListService and youtube remarketing

2016-12-26 Thread Rob Thamer
Hi - I'm trying to use the AdwordsUserListService to create a User List with a Rule based on whether the user has viewed a specific video as an Ad. Is this possible through the Api? I've read the examples but this doesn't appear to be addressed. This is available through

Re: Get UserList by AdWordsService.v201409.AdwordsUserListService

2016-07-20 Thread 'Anthony Madrigal' via AdWords API Forum
Hi guys, Just wanted to let you guys know that this feature is currently available in the API as of AdWords API v201603. Cheers, Anthony AdWords API Team -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: https://googleadsdeveloper.blogspot.com/ https

Re: 404 on AdwordsUserListService request

2016-02-16 Thread 'Yin Niu' via AdWords API Forum
Hello, Could you provide SOAP request and response so that I could look into more details? Thanks, Yin, AdWords API Team. -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: https://googleadsdeveloper.blogspot.com/ https://plus.google.com/+GoogleAds

404 on AdwordsUserListService request

2016-02-16 Thread Антон Сычугов
Hello! I'm querying "AdwordsUserListService" via suds (python) without predicates on production adword account and getting 404. Other API requests like "AdGroupAdService" work fine. My purpose is to get UserList.name using Criterion ID I'v got i

  1   2   >