• May 09, 2023

    Retrieving and Removing Option Set/Multi-Select Option Set Values in D365 CE with Web API

    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 […]

    • April 26, 2023

    How to use FetchXml with link-entity in WebAPI D365 CE

    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 […]

    • March 23, 2023

    Batch Request to Create, Update and Delete records in Dynamics 365 CE

    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 […]

    • February 28, 2023

    Filter in expand query of OData (D365 CE)

    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 […]

    • May 26, 2022

    Set up a Postman Environment and Application User for Dynamics 365 CE

    This blog explains how to set up postman environment to query D365 CE data and how to create application user. Create Azure App Create new App Registration in Azure, under Azure Active Directory. Click on New Registration to register a new Application. Enter Name, Select Supported Account Types and Enter Redirected URI and Select Platform as […]

    • April 07, 2022

    Create Notes with Attachment using Web API in Dynamics 365

    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 […]

    • March 14, 2022

    Create Parent – Child Record in Single D365 Web API Request

    POST request is used to create a record, So we’ll use POST request to create Parent – Child record. Select the POST request, Set the Dynamics API URL and entity set name in the header. 1.1 Create a Contact Entity Record with New Parent Account Record  To create Parent Account Record, Use Relationship’s Referencing Entity […]

    • December 21, 2021

    Use postman to Create record in Dynamics with the Web API

    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 […]

WANT QUICK D365 IMPLEMENTATION?

Let started with our D365 Quickstart package and get onboard within 7 days!

I'M INTERESTED!
© Copyright 2024 Nebulaa IT Solutions LLP. All Rights Reserved.
Download
Brochure