Extra information
System documentation: https://learn.microsoft.com/en-us/dynamics365/business-central/dev-itpro/api-reference/v2.0/Connector package documentation
Table of Contents
- 1. Setting up HTTP Client D365 Business Central
- 1.1 Steps
- 2. Subscribing to entities from D365 Business Central
- 2.1 Steps
- 2.2 General concept
- 3. Publishing entity to D365 Business Central
- 3.1 Steps
- 3.2 General concept
1. Setting up HTTP Client D365 Business Central
1.1 Steps- Before we begin please enable the APIs for Dynamics 365 Business Central base on this guide https://learn.microsoft.com/en-us/dynamics365/business-central/dev-itpro/api-reference/v2.0/enabling-apis-for-dynamics-nav.
- In Alumio Dashboard, go to Clients > HTTPS Client. Create a new HTTP Client and select D365 Business Central HTTP Client as the HTTP Client.
- Fill in the Base URL,Tenant ID, Client ID, Client Secret, and Scopes.
- You can optionally enable logging of request to get the log of the authentication.
- Press “Grant access to Microsoft D365 Business Central”.
- The Key will show up and you can save the HTTP Client for use.

2. Subscribing to Entities from D365 Business Central
2.1 Steps- Go to Connections -> Incoming and create a new incoming configuration and select “D365 Business Central” Subscriber as the subscriber.
- Select the module you want to subscribe from D365 Business Central.
- Fill in the “Company ID” you want to use on the request.
- Add any request parameters needed to subscribe to the entity (optional).
- You can optionally add a transformer to transform the request parameters into something you need.
- Select the D365 Business Central HTTP Client to use
- You can add a pagination feature to allow Alumio to fetch a paginated entity.


- Odata is the odata data of the url. For example the (id).
- Query is defined set of data attached to the end of a url.
Example: www.url.com?type=true&start=0
3. Publishing entity to D365 Business Central
3.1 Steps- Go to Connections -> Outgoing, create a new outgoing configuration and select “D365 Business Central” Publisher as the publisher.
- Select the action that you want the publisher to do with the data.
- Select the “D365 Business Central” entity you want the data to be published to.
- You can optionally add any query parameters to the request.
- You can also optionally add any transformers to transform the data into anything you need before submitting it to D365 Business Central.
- Select the HTTP Client to use.


- Odata is the odata data of the url. For example the (id).
- Query is defined set of data attached to the end of a url.
Example: www.url.com?type=true&start=0 - Payload is the data contained within a request.