Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Microsoft Dynamics C5 integration with external system

I am currently on a project integrating Microsoft Dynamics C5 with an external system. ie, when an item is created on Dynamics C5 i want the item to be created in an external system (which has a feature rich API). Can someone give an idea how can we manage it from C5 part, can we directly access it from C5 database using c# or is there a concept like web-hooks on C5 ?

like image 932
Ajmal VH Avatar asked Nov 14 '12 06:11

Ajmal VH


People also ask

Does dynamics have an API?

The Customer Engagement Web API provides a development experience that can be used across a wide variety of programming languages, platforms, and devices. The Web API implements the OData (Open Data Protocol), version 4.0, an OASIS standard for building and consuming RESTful APIs over rich data sources.

How do I connect Excel to Dynamics CRM?

In Excel, open the Data tab and choose From Other Sources -> From Microsoft Query. Choose the DynamicsCRM DSN. Select the option to use Query Wizard to create/edit queries. In the Query Wizard, expand the node for the table you would like to import into your spreadsheet.


1 Answers

There are possible different solutions, I can give you an idea, I've implemented before. You can create custom entities, where to store instance id of e.g. contacts which you want create or update in external system. Register insert / update plugins, which will create new instance of your custom entity each time you have updated contact. And next some process will take updated id's, create contacts in external system and delete / mark as processed you custom entity instances.

like image 60
paramosh Avatar answered Oct 06 '22 01:10

paramosh