knowledgecenter-breadcrum

Category

Category : Dynamics 365 Web Api

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…

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

What is Link-Entity 1. To combine data from different records in your query you need to use the element. 2. Each needs 3 key pieces of information: 2.a. The entity types to link to 2.b. The attribute in the main entity to join from 2.c. The attribute in the another…

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.…

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…