Custom Function using Custom API in D365.
Hello Guys, In our previous blog we have seen how to create custom API which is nothing but the custom action in old version of the CRM. Today we are going to create Custom Function using Custom API. But before d o follow us to know more about Dynamics and Power Platform. Also if you like our blog then please comment and share this blog with your friends. Consider a scenario where we need to retrieve more than 5000 records from the CRM using JavaScript or Query Expression. We can not retrieve more than 5000 records at single request using JavaScript. Even while working with Query Expression we can retrieve 5000 records at a time. To retrieve more than 5000 records in a single request we need to implement the concept of Pagination . Microsoft allows us to create Custom function using Custom API which act as GET Http Method and can be used to retrieve data as per our requirement. Let's understand this using a example. Here we will be creating one plugin which will accept two i...