Connect Microsoft Dynamics to Experience Platform using the Flow Service API
Read this guide to learn how you can connect your Microsoft Dynamics source to ÃÛ¶¹ÊÓƵ Experience Platform using the .
Get started
This guide requires a working understanding of the following components of ÃÛ¶¹ÊÓƵ Experience Platform:
- Sources: Experience Platform allows data to be ingested from various sources while providing you with the ability to structure, label, and enhance incoming data using Experience Platform services.
- Sandboxes: Experience Platform provides virtual sandboxes which partition a single Experience Platform instance into separate virtual environments to help develop and evolve digital experience applications.
Using Experience Platform APIs
For information on how to successfully make calls to Experience Platform APIs, see the guide on getting started with Experience Platform APIs.
The following sections provide additional information that you will need to know in order to successfully connect Experience Platform to a Dynamics account using the Flow Service API.
Gather required credentials
In order for Flow Service to connect to Dynamics, you must provide values for the following connection properties:
table 0-row-2 1-row-2 2-row-2 3-row-2 | |
---|---|
Credential | Description |
serviceUri |
The service URL of your Dynamics instance. |
username |
The user name for your Dynamics user account. |
password |
The password for your Dynamics account. |
table 0-row-2 1-row-2 2-row-2 | |
---|---|
Credential | Description |
servicePrincipalId |
The client ID of your Dynamics account. This ID is required when using service principal and key-based authentication. |
servicePrincipalKey |
The service principal secret key. This credential is required when using service principal and key-based authentication. |
For more information on getting started, refer to .
Create a base connection
A base connection retains information between your source and Experience Platform, including your source’s authentication credentials, the current state of the connection, and your unique base connection ID. The base connection ID allows you to explore and navigate files from within your source and identify the specific items that you want to ingest, including information regarding their data types and formats.
To create a base connection ID, make a POST request to the /connections
endpoint while providing your Dynamics authentication credentials as part of the request parameters.
API format
POST /connections
To create a Dynamics base connection using basic authentication, make a POST request to the Flow Service API while providing values for your connection’s serviceUri
, username
, and password
.
Request
The following request creates a base connection for a Dynamics source using basic authentication.
accordion | ||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Select to view request example | ||||||||||||||
|
Response
A successful response returns the newly created base connection, including its unique identifier (id
).
accordion | ||
---|---|---|
Select to view response example | ||
|
To create a Dynamics base connection using service principal key-based authentication, make a POST request to the Flow Service API while providing values for your connection’s serviceUri
, servicePrincipalId
, and servicePrincipalKey
.
Request
The following request creates a base connection for a Dynamics source using basic service principal key-based authentication.
accordion | ||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Select to view request example | ||||||||||||||
|
Response
A successful response returns the newly created connection, including its unique identifier (id
).
accordion | ||
---|---|---|
Select to view response example | ||
|
Explore your data tables
To explore your Dynamics data tables, make a GET request to the /connections/{BASE_CONNECTION_ID}/explore
endpoint and provide your base connection ID as part of the query parameters.
API format
GET /connections/{BASE_CONNECTION_ID}/explore?objectType=root
{BASE_CONNECTION_ID}
Request
The following request retrieves the list of available tables and views for a Dynamics source with the base connection ID: dd668808-25da-493f-8782-f3433b976d1e
.
code language-shell |
---|
|
Response
A successful response returns the Dynamics tables and views directory at the root level.
code language-json |
---|
|
Use primary key to optimize data exploration
You can optimize your explore queries by providing primaryKey
as part of your query parameters. You must specify the primary key of the Dynamics table when including primaryKey
as a query parameter.
API format
GET /connections/{BASE_CONNECTION_ID}/explore?preview=true&object={OBJECT}&objectType={OBJECT_TYPE}&previewCount=10&primaryKey={PRIMARY_KEY}
{BASE_CONNECTION_ID}
preview
{OBJECT}
{OBJECT_TYPE}
previewCount
{PRIMARY_KEY}
Request
code language-shell |
---|
|
Inspect the structure of a table
To inspect the structure of a specific table, make a GET request to /connections/{BASE_CONNECTION_ID}/explore
and provide the path to the specific table as a query parameter.
API format
GET /connections/{BASE_CONNECTION_ID}/explore?object={TABLE_PATH}&objectType=table
{BASE_CONNECTION_ID}
{TABLE_PATH}
Request
The following request retrieves the structure and contents of a Dynamics table with path workflowdependency
.
code language-shell |
---|
|
Response
A successful response returns the contents of path workflowdependency
.
code language-json |
---|
|
Inspect the structure of a view
In Dynamics, a view refers to the columns to display, the width of each column, the default system in which a list of records are sorted, and the default filters applied to restrict which records will appear in the list.
To inspect the structure of a view, make a GET request to /connections/{BASE_CONNECTION_ID}/explore
and specify the view path in your query parameters. Additionally, you must specify objectType
as view
.
API format
GET /connections/{BASE_CONNECTION_ID}/explore?object={VIEW_PATH}&objectType=view
{BASE_CONNECTION_ID}
{VIEW_PATH}
Request
The following request retrieves accountView1
.
code language-shell |
---|
|
Response
A successful response returns the structure of accountView1
.
code language-json |
---|
|
Preview entity type view
To preview the contents of a view, make a GET request to /connections/{BASE_CONNECTION_ID}/explore
and include the view path as well as preview=true
in your query parameters.
API format
GET /connections/{BASE_CONNECTION_ID}/explore?object={VIEW_PATH}&preview=true&objectType=view
{BASE_CONNECTION_ID}
{VIEW_PATH}
Request
The following request previews the contents of accountView1
.
code language-shell |
---|
|
Response
A successful response returns the contents of accountView1
.
code language-json |
---|
|
Create a source connection to ingest view
To create a source connection and ingest a view, make a POST request to the /sourceConnections
endpoint, provide the table name, and specify entityType
as view
in the request body.
API format
POST /sourceConnections
Request
The following request creates a Dynamics source connection and ingests views.
code language-shell |
---|
|
Response
A successful response returns the newly generated source connection ID and its corresponding etag.
code language-json |
---|
|
Use primary key to optimize your dataflow
You can also optimize your Dynamics dataflow by specifying the primary key as part of your request body parameters.
API format
POST /sourceConnections
Request
The following request creates a Dynamics source connection while specifying the primary key as contactid
.
code language-shell |
---|
|
table 0-row-2 1-row-2 2-row-2 3-row-2 4-row-2 5-row-2 | |
---|---|
Property | Description |
baseConnectionId |
The ID of the base connection. |
data.format |
The format of the data. |
params.tableName |
The name of the table in Dynamics. |
params.primaryKey |
The primary key of the table that will optimize queries. |
connectionSpec.id |
The connection spec ID that corresponds with the Dynamics source. |
Response
A successful response returns the newly generated source connection ID and its corresponding etag.
code language-json |
---|
|
Next steps
By following this tutorial, you have created a Microsoft Dynamics base connection using the Flow Service API. You can use this base connection ID in the following tutorials: