Error in deserializing body of reply message for operation 'syncMObjects'
When Creating Opportunity with following association, service fails the deserilization with following error
Error in deserializing body of reply message for operation 'syncMObjects'
Code:
var Opportunity. = new MObject();
Opportunity.type = "Opportunity";
Opportunity.associationList = new[] { new MObjAssociation() };
Opportunity.associationList[0].mObjType = "Company";
Opportunity.associationList[0].externalKey = new Attrib();
Opportunity.associationList[0].externalKey.name = "CrmAccount_Id";
Opportunity.associationList[0].externalKey.value = "4d463e3b-0176-0eb8-c80b-50ae65e11bfd";
Actual message return from service ( on fiddler) is
Association type 'Company' with 'CrmAccount_Id' value '4d463e3b-0176-0eb8-c80b-50ae65e11bfd' not found
if i create 100 opportunity at a time, entire batch will fail even if only one opportunity has wrong value.