Link to home
Start Free TrialLog in
Avatar of ITsolutionWizard
ITsolutionWizardFlag for United States of America

asked on

Dynamics 365 cloud

I just signed up 365 and just want to know how to call its API to insert lead anyone knows how to do that?
Avatar of Feridun Kadir
Feridun Kadir
Flag of United Kingdom of Great Britain and Northern Ireland image

You can the web api described here, https://msdn.microsoft.com/en-us/library/mt607901.aspx or work with the SDK to programmatically create records described here https://msdn.microsoft.com/en-us/library/hh547453.aspx
Hi ITSolutionWizard,

Which programming language/platform you want to use to create records using Web API?

Regards,
Chinmay.
Avatar of ITsolutionWizard

ASKER

C#
ASKER CERTIFIED SOLUTION
Avatar of Chinmay Patel
Chinmay Patel
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Assume I just want to read lead entity. how can I do that in c#?
Any helps
You mean you want to retrieve lead entity records? If yes, then use the sample code I suggested in the previous link as you will still need code to create a connection with Dynamics 365 after that you can run any of the queries shown here

https://msdn.microsoft.com/en-us/library/gg334767.aspx

Just replace, entity names like accounts or contacts with leads.