I am integrating my application with Dynamics.
Now, I want to retrieve the data from the Dynamics Sales such as customer,products and order list from the sales organization.
I didn't find any web-api.
Note : Done with the authorization
I am integrating my application with Dynamics.
Now, I want to retrieve the data from the Dynamics Sales such as customer,products and order list from the sales organization.
I didn't find any web-api.
Note : Done with the authorization
Here is some documentation.
To get you started:
To get the URL of the org's API, go to Settings > Customization > Developer Resources.
To retrieve Accounts you could do an HTTP GET on:
https://myOrg.api.crm.dynamics.com/api/data/v9.1/accounts
To add some filtering:
https://myOrg.api.crm.dynamics.com/api/data/v9.1/accounts?$select=accountid,name&$filter=startswith(name,'a')&$top=5
To retrieve a single account:
https://myOrg.api.crm.dynamics.com/api/data/v9.1/accounts(9bf473d6-47ae-e711-8108-5065f38a3ba1)