You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add a option to load the EntityDefinitions with Attributes and the RelationshipDefinitions.
With those loaded we can auto correct attributes names and entity relationships.
Ex. -> entity["new_account"] is corrected to -> entity["new_Account"]
Add a option to load the EntityDefinitions with Attributes and the RelationshipDefinitions.
With those loaded we can auto correct attributes names and entity relationships.
Ex. ->
entity["new_account"]
is corrected to ->entity["new_Account"]
Api Links:
Ex.:
When creating a Incident with the customer field:
entity["customerid"] = new EntityReference("contact", new Guid())
Must be changed by the Api To ->
entity["customerid_contact"] = new EntityReference("contact", new Guid())
The RelationshipDefinitions contains the 'ReferencingEntityNavigationPropertyName' with the correct value
The text was updated successfully, but these errors were encountered: