Re: CRM based UserList update

2018-01-03 Thread 'Bharani Cherukuri (AdWords API Team)' via AdWords API Forum
Hello, You could use the AdWordsUserListService.mutateMembers to either add or remove the members from the list. You will need to use ADD or REMOVE operators to add or remove members to the

Re: CRM based UserList update

2018-01-03 Thread Дмитро Булах
Bharani, thanks for an explanation. Do I understand correctly that there is no way to "replace" the members of the list except running removeAll operation? On Thursday, December 28, 2017 at 11:19:44 PM UTC+2, Bharani Cherukuri (AdWords API Team) wrote: > > Hello, > > You can perform the removeAl

Re: CRM based UserList update

2017-12-28 Thread 'Bharani Cherukuri (AdWords API Team)' via AdWords API Forum
Hello, You can perform the removeAll operation on a CrmBasedUserList to remove all the members from the user list. However, you will have to call the REMOVE operator on the

CRM based UserList update

2017-12-28 Thread Дмитро Булах
Hello I'm trying to replace all records in my CRM based user list with given list of hashed emails. Here are the steps I'm following: 1. Get the list based on its ID 2. Call `mutate` with operator `SET` for retrieved list 3. Call `mutateMembers` with operator `ADD` and my list of hashed emails.