Discover the URL for your organization using the Discovery Service

Use the discovery service to determine the organizations that a user is a member of, and the endpoint address URL to access the organization service for each of those organizations. This discovery service is necessary because Dynamics 365 for Customer Engagement is a multi-tenant environment—a single Dynamics 365 for Customer Engagement server can host multiple business organizations. By using the discovery service, your application can determine the endpoint address URL to access the target organization’s business data.

For Dynamics 365 for Customer Engagement installations, server and organization allocation may change as part of datacenter management and load balancing. Therefore, the discovery service provides a way to discover which Dynamics 365 for Customer Engagement server is serving your organization at a given time.

For an Internet-facing deployment (IFD) installation, the Web service URL has the following form:

https://dev.<hostname[:port]>/XRMServices/2011/Discovery.svc  

For an on-premises installation, the web service URL has the following form:

http[s]://<hostname[:port]>/XRMServices/2011/Discovery.svc  

Consult the Developer Resources page in the Dynamics 365 for Customer Engagement Web application for the correct URL of your installation.

To use the discovery service, add a reference to the Microsoft.Xrm.Sdk.dll assembly to your Visual Studio project, and then add a using or imports statement to access the Microsoft.Xrm.Sdk.Discovery namespace. The IDiscoveryService interface provides Execute method you will use to pass a instance of the DiscoveryRequest class.

Alternatively, you can add the service references for the URLs described previously to your project.

Use the Discovery Service with the SDK Assemblies
Write Applications and Server Extensions
Download endpoints using Developer resources page
Access the Web Services in Dynamics 365 Customer Engagement
Quick Start: A Simple Program