Skip to content

Commit c600313

Browse files
Clare Zheng (Shanghai Wicresoft Co Ltd)Clare Zheng (Shanghai Wicresoft Co Ltd)
authored andcommitted
Add AD auth content
1 parent 09f2a45 commit c600313

File tree

1 file changed

+38
-8
lines changed

1 file changed

+38
-8
lines changed

articles/data-factory/connector-dynamics-crm-office-365.md

Lines changed: 38 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.topic: conceptual
88
ms.author: jianleishen
99
author: jianleishen
1010
ms.custom: synapse
11-
ms.date: 11/20/2023
11+
ms.date: 07/11/2024
1212
---
1313
# Copy and transform data in Dynamics 365 (Microsoft Dataverse) or Dynamics CRM using Azure Data Factory or Azure Synapse Analytics
1414

@@ -234,16 +234,46 @@ Additional properties that compare to Dynamics online are **hostName** and **por
234234

235235
| Property | Description | Required |
236236
|:--- |:--- |:--- |
237-
| type | The type property must be set to "Dynamics", "DynamicsCrm", or "CommonDataServiceForApps". | Yes. |
238-
| deploymentType | The deployment type of the Dynamics instance. The value must be "OnPremisesWithIfd" for Dynamics on-premises with IFD.| Yes. |
239-
| hostName | The host name of the on-premises Dynamics server. | Yes. |
237+
| type | The type property must be set to "Dynamics", "DynamicsCrm", or "CommonDataServiceForApps". | Yes |
238+
| deploymentType | The deployment type of the Dynamics instance. The value must be "OnPremisesWithIfd" for Dynamics on-premises with IFD.| Yes |
239+
| hostName | The host name of the on-premises Dynamics server. | Yes |
240240
| port | The port of the on-premises Dynamics server. | No. The default value is 443. |
241-
| organizationName | The organization name of the Dynamics instance. | Yes. |
242-
| authenticationType | The authentication type to connect to the Dynamics server. Specify "Ifd" for Dynamics on-premises with IFD. | Yes. |
243-
| username | The username to connect to Dynamics. | Yes. |
244-
| password | The password for the user account you specified for the username. You can mark this field with "SecureString" to store it securely. Or you can store a password in Key Vault and let the copy activity pull from there when it does data copy. Learn more from [Store credentials in Key Vault](store-credentials-in-key-vault.md). | Yes. |
241+
| organizationName | The organization name of the Dynamics instance. | Yes |
242+
| authenticationType | The authentication type to connect to the Dynamics server. Specify "ActiveDirectoryAuthentication" or "Ifd" for Dynamics on-premises with IFD. | Yes |
243+
| domain | The Active Directory domain that will verify your credentials. | Yes when authentication is "ActiveDirectoryAuthentication" |
244+
| username | The username to connect to Dynamics. | Yes |
245+
| password | The password for the user account you specified for the username. You can mark this field with "SecureString" to store it securely. Or you can store a password in Key Vault and let the copy activity pull from there when it does data copy. Learn more from [Store credentials in Key Vault](store-credentials-in-key-vault.md). | Yes |
245246
| connectVia | The [integration runtime](concepts-integration-runtime.md) to be used to connect to the data store. If no value is specified, the property uses the default Azure integration runtime. | No |
246247

248+
#### Example: Dynamics on-premises with IFD using Active Directory authentication
249+
250+
```json
251+
{
252+
"name": "DynamicsLinkedService",
253+
"properties": {
254+
"type": "Dynamics",
255+
"description": "Dynamics on-premises with IFD linked service using IFD authentication",
256+
"typeProperties": {
257+
"deploymentType": "OnPremisesWithIFD",
258+
"hostName": "contosodynamicsserver.contoso.com",
259+
"port": 443,
260+
"organizationName": "admsDynamicsTest",
261+
"authenticationType": "ActiveDirectoryAuthentication",
262+
"domain": "< Active Directory domain >",
263+
"username": "[email protected]",
264+
"password": {
265+
"type": "SecureString",
266+
"value": "<password>"
267+
}
268+
},
269+
"connectVia": {
270+
"referenceName": "<name of Integration Runtime>",
271+
"type": "IntegrationRuntimeReference"
272+
}
273+
}
274+
}
275+
```
276+
247277
#### Example: Dynamics on-premises with IFD using IFD authentication
248278

249279
```json

0 commit comments

Comments
 (0)