Hritcu Andrei
Hritcu Andrei

Reputation: 172

Get Entity Types by calling Dynamics 365 API

Can I found out what entity types are available by calling Dynamics 365 API?

Practically I want this list. https://msdn.microsoft.com/da-dk/library/mt593046.aspx#bkmk_DerivedEntityTypes

Upvotes: 0

Views: 1802

Answers (1)

pen2
pen2

Reputation: 769

You can get entity list using Web API. Here is description of it. For example you will get all LogicalNames from this:

http://[SERVER_NAME]/[ORG_NAME]/api/data/v8.1/EntityDefinitions?$select=LogicalName

Upvotes: 2

Related Questions