Integration of Microsoft Dynamics C5 with an external system

I am currently participating in a project integrating Microsoft Dynamics C5 with an external system. those. when an element is created in Dynamics C5, I want the element to be created in an external system (which has an API with advanced functionality). Can someone give an idea of ​​how we can manage it from the C5 part, can we directly access it from the C5 database using C #, or is there a concept similar to C5 web hooks?

+7
source share
1 answer

There are various solutions, I can give you an idea that I implemented earlier. You can create custom entities where to store the instance ID, for example. The contacts you want to create or update in the external system. Register insert / update plugins that will create a new instance of your custom object every time you update a contact. Then in the next process the identifier will be updated, create contacts in the external system and delete / mark as instances of user entities processed by you.

+2
source

All Articles