Dynamics FnO Entities
Dynamics API documentation is pretty scare and if you are doing work using the Dynamcis REST API you need to know the entities and propeties.
It is quite tricky to get documentation about the entities and properies so I needed to gather information myself.
Getting "Metadata"
There is one URL that will give you an XML represntation of everything. It is:
https://{your_dynamics_host}/data/$metadata
This gives you an enormous response (so big that it may not even be possible for a browser to handle the response). Best to use a tool like "Postman" to get that XML
Strangely there does not seem to be a need to get an authorisation token to get this response.
When I tried this out I got an XML response of over 615 thousand lines
Extracting Entity/Property/Primary Keys
Inside the XML is a treasure trove of information.
- Entity names
- Entity primary keys
- Entity Properties and their data types
- Entity Navigation Properties (i.e. properties that link to other entities)
I used my tool "Vermonti" to process this XML file as follows:
- Turn the XML into JSON (resulted in a file of over 1.6 million rows) and store it
- Use Vermonti to parse the JSON and extract properties to a CSV file
- Use Vermonti to parse the JSON and extract navigation properties and APPEND to the CSV file
- Convert the CSV file into an XLSX workbook and sort by Entity Name. This gives me a list of all the fields for all entities (nearly 75 thousand properties)
- Use Vermonti to parse the JSON and extract primary keys into a XLSX workbook. There are nearly 11 thousand properties used as primary keys - most of which are compund primary keys.
If you want a copy of the workbooks Vermonti generated then emaill me...