- May 09, 2023
This blog post will provide instructions on retrieving or removing the metadata of an Option Set or Multi-Select Option Set using the Web API. 1.1 Get Option Set/Multi-Select Option Set metadata from Web API In MSCRM, the String Map table can be utilized to retrieve details regarding option sets. This table is primarily utilized to […]
In this Blog, we will learn how we can use fetchxml with link-entity in Web API. What is Link-Entity To combine data from different records in your query you need to use the <link-entity> element. 2. Each <link-entity> needs 3 key pieces of information: 2.a. The entity types to link to 2.b. The attribute in the main entity […]
Batch Request allows us to make multiple API calls within a single API call. We’re limited to 1000 API calls in a single batch request. The HTTP method only supports POST, PATCH & DELETE in Batch Request. In this Blog, We’re calling 3 API calls in a single Batch Request. POST – Create a new Account […]
Introduction: In this Blog, we will learn how to use filter in expand of OData. Example: Let’s say we have an account with multiple contacts, and we want to filter out only the contacts who have their contact method listed as ‘Email’. How to write API Request: a. You can get Service Root URL from […]
Create Notes record with Attachment for Contact Entity var note = {}; note.subject = “Notes Subject”; note.notetext = “Notes Text”; note.filename = “FileName.txt”; note.documentbody = “Base64String”; note[“objectid_contact@odata.bind”] = “/contacts(00000000-0000-0000-000000000000)”; Xrm.WebApi.createRecord(“annotation”, note).then( function success(result) { alert(“Success”); }, function(error) { alert(error.message); }); Note:- While setting object ID or regrading lookup we have to specify entity name with […]
POST request is used to send data to create a record. Select the POST request, Set the Dynamics API URL and entity set name in the header. How to get API URL : Advance Settings >> Customizations >> Developer Resources Create a Contact Entity Record with all Data Types Request Body Data: { //Single line […]
Let started with our D365 Quickstart package and get onboard within 7 days!
I'M INTERESTED!