Download the endpoints using the Microsoft Dynamics CRM 2013 Developer resources page

 

Applies To: Dynamics CRM 2013

The Developer Resources page in the Microsoft Dynamics CRM 2013 and Microsoft Dynamics CRM Online web application provides important resources. Included on this page are the web service endpoint URLs, a certificate for accessing Microsoft Azure, and other organization information that you'll need during development. To access the page in the web application, click or tap Settings > Customizations, and then click or tap Developer Resources.

For the “Organization service” and “Organization data service” sections in this topic, the example URLs include an OrganizationName. This refers to the organization that you specify in the URL when you access the web application. For example, for Contoso.crm.dynamics.com, the OrganizationName is Contoso. ServerName refers to the name of the server, including the port number, for example, myserver or myserver:5555.

In This Topic

Organization unique name

Microsoft Azure Service Bus issuer certificate

Developer center

Discovery service

Organization service

Organization data service

Using the WSDL

Organization unique name

Shows the unique name for your organization, which is needed when interacting with the discovery service. Note that this may not be the same as the name that is specified in the URL. This name can be found in the following properties:

  • Deployment web service: UniqueName

  • Discovery web service: UniqueName

  • Organization web service using early bound classes: Organization.UniqueName

You can also retrieve this from the discovery service by using the RetrieveOrganizationsRequest message.

Microsoft Azure Service Bus issuer certificate

Provides a download link to the public certificate that is required to configure Microsoft Azure for Microsoft Dynamics CRM integration. For an on-premises or Internet-facing deployment, this information is only visible after CRM has been configured for Azure integration.

For more information, see Azure extensions for Microsoft Dynamics CRM 2013 and Walkthrough: Configure Microsoft Dynamics CRM 2013 On-prem to authenticate with Microsoft Azure.

Developer center

The Microsoft Dynamics CRM Developer Center contains a wealth of information to help developers. Here you’ll find the Microsoft Dynamics CRM SDK, which includes documentation, samples, and tools, as well as technical articles, ramp up kits, videos, blogs, forums, and more.

Discovery service

The IDiscoveryService web service provides information about the organizations available on the Microsoft Dynamics CRM server using the SOAP protocol. This information includes the web address (URL) for each organization. For more information, see Discover the URL for your organization with IDiscoveryService web service.

For Microsoft Dynamics CRM Online

Use the following URLs to access the discovery service (use the appropriate URL for your location).

Location

Discovery web service URL

Identity provider

North America

https://dev.crm.dynamics.com/XRMServices/2011/Discovery.svc

Microsoft account

https://disco.crm.dynamics.com/XRMServices/2011/Discovery.svc

Microsoft Office 365

EMEA

https://dev.crm4.dynamics.com/XRMServices/2011/Discovery.svc

Microsoft account

https://disco.crm4.dynamics.com/XRMServices/2011/Discovery.svc

Microsoft Office 365

APAC

https://dev.crm5.dynamics.com/XRMServices/2011/Discovery.svc

Microsoft account

https://disco.crm5.dynamics.com/XRMServices/2011/Discovery.svc

Microsoft Office 365

For on-premises Microsoft Dynamics CRM

Use the following URL to access the discovery service:

http://ServerName/XRMServices/2011/Discovery.svc

Organization service

The IOrganizationService web service provides access to the business data and metadata of your organization by using the SOAP protocol. More information: Use the IOrganizationService web service to read and write data or metadata.

For Microsoft Dynamics CRM Online

Use the following URLs to access the organization service (SOAP endpoint):

https://OrganizationName.api.crm.dynamics.com/XrmServices/2011/Organization.svc (North America)

https://OrganizationName.api.crm4.dynamics.com/XrmServices/2011/Organization.svc (EMEA)

https://OrganizationName.api.crm5.dynamics.com/XrmServices/2011/Organization.svc (APAC)

For on-premises Microsoft Dynamics CRM

Use the following URLs to access the organization service (SOAP endpoint):

https://ServerName/OrganizationName/XRMServices/2011/Organization.svc 

Organization data service

This Open Data (OData) Web service provides access to the business data of your organization by exposing a REST API. This link opens the Conceptual Schema Definition Language (CSDL) document that describes how to access your data by using this API. For more information, see Use the OData endpoint with Ajax and JScript web resources, and Use the OData endpoint with Ajax and JScript web resources.

For Microsoft Dynamics CRM Online

Use the following URLs to access the organization data service (OData REST endpoint):

https://OrganizationName.api.crm.dynamics.com/XrmServices/2011/OrganizationData.svc (North America)

https://OrganizationName.api.crm4.dynamics.com/XrmServices/2011/OrganizationData.svc (EMEA)

https://OrganizationName.api.crm5.dynamics.com/XrmServices/2011/OrganizationData.svc (APAC)

For on-premises Microsoft Dynamics CRM

Use the following URL to access the organization data service (OData REST endpoint):

https://ServerName/OrganizationName/XRMServices/2011/OrganizationData.svc

Using the WSDL

To add a service reference for these services to a Microsoft Visual Studio project, you must append ?WSDL to the service URL when specifying the address in the Add Service Reference dialog box. For example, the discovery service Web Services Description Language (WSDL) address is http:// servername/xrmservices/2011/discovery.svc?wsdl.

See Also

Write applications and server extensions
Use the IOrganizationService web service to read and write data or metadata
Microsoft Dynamics CRM Developer Center