We just installed SP1 on our CRM 2016 on prem server. I am now receiving the error "Failed to Insert Audit Record" when executing an AddListMembersListRequest. We can add the members manually through the interface but not through code now. We are able to create the marketing list but receive the error when trying to add members via and array of member ids. Error occurs on the Execute line.
AddListMembersListRequest x = new AddListMembersListRequest(); x.ListId = staticListId; x.MemberIds = bidContactList.ToArray(); AddListMembersListResponse y = (AddListMembersListResponse) orgContext.Execute(x);