Hello,
I'm implementing a code within a Logic App to send data to a custom Activity in Dynamics online v8.2 web services. Everything looks like works good, all the data is making it to the custom activity and executes a plugin, but the issue is that all the EntityReferences are null at the time that reading the values.
This is the Dynamics activity field definition:
this is the Logic App.
in the ODataV4Metadata from CRM the needed field is defined this way:
<Parameter Name="leadId" Type="mscrm.lead"/>
and the way I'm sending the values from Postman to the Logic app is a simple Json field with the GUID on it:
{
"crmLeadId": "74ec5085-XXXX-e811-812e-e0071b6aaXXX",
}
does anyone knows how to define these type of values from the Json or something that could give a light?
Thank you!