Hi Biswajeet, You may use the AdwordsUserListService.mutateMembers() <https://developers.google.com/adwords/api/docs/reference/v201710/AdwordsUserListService#mutatemembers> operation to update an existing audience. All you need to do is to get the Id <https://developers.google.com/adwords/api/docs/reference/v201710/AdwordsUserListService.CrmBasedUserList#id> of the user list that you want to update using the AdwordsuserListService.get() <https://developers.google.com/adwords/api/docs/reference/v201710/AdwordsUserListService#get> and then you may follow this sample code <https://developers.google.com/adwords/api/docs/samples/java/remarketing#add-crm-based-user-list> (also available in other languages) starting from this line " *Long userListId = userListAdded.getId();*" (*userListId = YOUR_USERLISTID_TO_BE_UPDATED*) to add or remove your email address. You may change the operator (*mutateMembersOperation.setOperator(Operator.ADD);*) to ADD or REMOVE based on your preferred operation. Take note that the SET operator is not supported in AdwordsUserListService.mutateMembers().
Let me know if you still need clarifications. Thanks and regards, Luis 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 [email protected] To unsubscribe from this group, send email to [email protected] 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 [email protected]. 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/edb3caae-e362-4cf5-a628-5277f46d4fcb%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
