Hello, You could use the CrmBasedUserList <https://developers.google.com/adwords/api/docs/reference/v201605/AdwordsUserListService.CrmBasedUserList> to upload the customer emails. Please check out re-marketing guide <https://developers.google.com/adwords/api/docs/guides/remarketing#remarketing-using-customer-emails> for more details.
Please check out AddCrmBasedUserList <https://github.com/googleads/googleads-java-lib/blob/master/examples/adwords_axis/src/main/java/adwords/axis/v201605/remarketing/AddCrmBasedUserList.java> example code from Java client library. Other languages example code could be found here <https://developers.google.com/adwords/api/docs/clientlibraries>. The first call, which is the mutate, creates the CrmBasedUserList, with no members. The subsequent calls are to mutateMembers, which can then add people to the existing list up to 10,000 per operation/request (e.g AdwordsUserListService.mutateMembers(mutateMembersOperation)). You can only have one operation per user list id when you call mutateMembers. E.g. you want to upload 100,000 user email to CrmBasedUserList. In this case, to upload 100,000 users, first call, which is the mutate, creates the CrmBasedUserList, with no members and you could have another 10 separate mutateMembers requests(i.e. 10 separate AdwordsUserListService.mutateMembers(mutateMembersOperation1) API calls) each containing 10,000 users in mutateMembersOperation. (e.g. AdwordsUserListService.mutateMembers(mutateMembersOperation1)) , AdwordsUserListService.mutateMembers(mutateMembersOperation2)), ..up to. AdwordsUserListService.mutateMembers(mutateMembersOperation10)). 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 [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/2187696f-d0a3-43f5-952c-4989ce61e675%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
