Tag Archives: using Web API in CRM 2016

Writing create request using Web API

WebAPICreate1

In our earlier posts we provided sample code to write retrieve and retrievemultiple request, today we are going to provide sample code to create entity record using Web API. Let say we want to create account record and want to set different fields of different types. There are mainly two things which is different in Web API while creating entity… Read more »

Writing retrievemultiple request using Web API

retrievemultipleWebAPI2

In our last post we provided sample code to write retrieve method using Web API. Retrieve methods brings data based on the primary key, so we just need to pass primary key of specific entity record whose data we want to bring and obviously it always returns single record. In this post we are going to provide sample code for… Read more »