Hi Mitchell, Thanks for you quick response. I am stuck in one scenario where I am trying to add, update or delete the users (1000 in single request) from the existing user list (Audience) and trying to handle the partial failures. below is code i have implemented:
using (var userListService = (AdwordsUserListService) user.GetService(AdWordsService.v201809.AdwordsUserListService)) { //set the partial Failure as true userListService.RequestHeader.partialFailure = true; // Create operation to add members to the user list based on email MutateMembersOperation mutateMembersOperation = new MutateMembersOperation { operand = new MutateMembersOperand { userListId = long.Parse(audienceId), membersList = members.ToArray() }, @operator = Operator.ADD }; //Add members to the user list/audience based on the provided member list MutateMembersReturnValue mutateMembersResult = userListService.mutateMembers( new MutateMembersOperation[] { mutateMembersOperation }); } } catch (Exception e) { throw new System.ApplicationException( "Failed to add user lists " + "(a.k.a. audiences) and upload email addresses.", e); } I was assuming to get the partialFailureErrors from the mutateMembersResult, however, counldn't get it. Could you please point me to the right direction if I am doing something wrong in the code to handle the partial failures. Thanks, Abhinav Sharma On Saturday, 23 May 2020 05:30:02 UTC+10, adsapiforumadvisor wrote: > > Hi Abhinav, > > You should make sure you have partial failures > <https://developers.google.com/adwords/api/docs/guides/partial-failure> > enabled when you make your call. With this enabled, all members will go > through except the ones that fail. In terms of dealing with the failures, I > would check if it's the same issue or different issues impacting them then > try and troubleshoot them one by one. Here > <https://developers.google.com/adwords/api/docs/reference/v201809/AdwordsUserListService.MutateMembersError> > > are the possible mutateMember errors. If you have any issues with that, > feel free to share the error logs here *via Reply privately to author *and > I can help you out. > > Regards, > Mitchell > Google Ads API Team > > ref:_00D1U1174p._5001UaRix7:ref > -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog: https://googleadsdeveloper.blogspot.com/ =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ You received this message because you are subscribed to the Google Groups "AdWords API and Google Ads API Forum" group. To post to this group, send email to adwords-api@googlegroups.com To unsubscribe from this group, send email to adwords-api+unsubscr...@googlegroups.com 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 and Google Ads API Forum" group. To unsubscribe from this group and stop receiving emails from it, send an email to adwords-api+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/adwords-api/aa881a47-c21f-46ed-858e-899ad4f622fd%40googlegroups.com.