ESC
Type to search...

IndustryData-DataConnector.ReadWrite.All

Export JSON
Export CSV
Copy URL
Print
ApplicationDelegated Read/Write All Resources

Allows the app to read and write data connectors without a signed-in user.

Permission data: April 6, 2026 at 4:06 AM UTC
Delegated Access App-Only Access

Permission Details

Application Permission

Manage data connector definitions

Allows the app to read and write data connectors without a signed-in user.

Delegated Permission Admin consent required

Manage data connector definitions

Allows the app to read and write data connectors on behalf of the signed-in user.

Properties

Microsoft Graph beta endpoint-derived-docs

Properties is shown from beta metadata because a stable v1.0 schema is not available for this resource mapping.

Property Type Description
displayName String The name of the data connector. Inherited from industryDataConnector.
fileFormat industryData.fileFormatReferenceValue The file format that external systems can upload using this connector.
connections externalConnection collection
id string The unique identifier for an entity. Read-only.

JSON Representation

Microsoft Graph beta endpoint-derived-docs

JSON representation is shown from beta metadata because a stable v1.0 schema is not available for this resource mapping.

JSON representation
{
  "@odata.type": "#microsoft.graph.industryData.azureDataLakeConnector",
  "displayName": "String",
  "fileFormat": {
    "@odata.type": "microsoft.graph.industryData.fileFormatReferenceValue"
  }
}

Relationships

Microsoft Graph beta endpoint-derived-docs

Relationships is shown from beta metadata because a stable v1.0 schema is not available for this resource mapping.

Relationship Type Description
sourceSystem industryData.sourceSystemDefinition The sourceSystemDefinition object that this connector is connected to. Inherited from industryDataConnector
connections externalConnection collection Related connections data exposed by this resource.

Graph Methods

Delegated access App-only access
Exact Microsoft Learn match

Microsoft Graph v1.0 endpoints are mapped directly from refreshed Microsoft Learn permissions tables.

No API methods available for this version.

Exact Microsoft Learn match

Microsoft Graph beta endpoints are mapped directly from refreshed Microsoft Learn permissions tables.

Methods
GET /external/industryData/dataConnectors
GET /external/industryData/dataConnectors/{industryDataConnectorId}
GET /external/industryData/dataConnectors/{industryDataConnectorId}/microsoft.graph.industryData.azureDataLakeConnector/getUploadSession
GET /external/industryData/inboundFlows/{inboundFlowId}/dataConnector
POST /external/industryData/dataConnectors
POST /external/industryData/dataConnectors/{industryDataConnectorId}/validate
POST /external/industryData/inboundFlows/{inboundFlowId}/dataConnector/validate
PATCH /external/industryData/dataConnectors/{industryDataConnectorId}
DELETE /external/industryData/dataConnectors/{industryDataConnectorId}
Exact Microsoft Learn PowerShell match

Microsoft Graph PowerShell v1.0 commands are mapped directly from refreshed Microsoft Learn PowerShell snippets.

No deterministic PowerShell command map is available for this permission.

Browse PowerShell docs
Exact Microsoft Learn PowerShell match

Microsoft Graph PowerShell beta commands are mapped directly from refreshed Microsoft Learn PowerShell snippets.

Commands
Get-MgBetaExternalIndustryDataConnector /external/industryData/dataConnectors
List industryDataConnectors
Get-MgBetaExternalIndustryDataConnector /external/industryData/dataConnectors/{industryDataConnectorId}
Get industryDataConnector
New-MgBetaExternalIndustryDataConnector /external/industryData/dataConnectors
Create azureDataLakeConnector
New-MgBetaExternalIndustryDataConnector /external/industryData/dataConnectors
Create oneRosterApiDataConnector
Remove-MgBetaExternalIndustryDataConnector /external/industryData/dataConnectors/{industryDataConnectorId}
Delete industryDataConnector
Test-MgBetaExternalIndustryDataConnector /external/industryData/dataConnectors/{industryDataConnectorId}/validate
industryDataConnector: validate
Update-MgBetaExternalIndustryDataConnector /external/industryData/dataConnectors/{industryDataConnectorId}
Update azureDataLakeConnector
Update-MgBetaExternalIndustryDataConnector /external/industryData/dataConnectors/{industryDataConnectorId}
Update oneRosterApiDataConnector

Code Examples

C# / .NET SDK
Create azureDataLakeConnector
// Code snippets are only available for the latest version. Current version is 5.x

// Dependencies
using Microsoft.Graph.Beta.Models.IndustryData;

var requestBody = new AzureDataLakeConnector
{
	OdataType = "#microsoft.graph.industryData.azureDataLakeConnector",
	DisplayName = "CSV connector",
	FileFormat = new FileFormatReferenceValue
	{
		OdataType = "microsoft.graph.industryData.fileFormatReferenceValue",
		Code = "schoolDataSyncV1",
	},
	AdditionalData = new Dictionary<string, object>
	{
		{
			"[email protected]" , "https://graph.microsoft.com/beta/external/industryData/sourceSystems('aa050107-5784-4a8e-1876-08daddab21bc')"
		},
	},
};

// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=csharp
var result = await graphClient.External.IndustryData.DataConnectors.PostAsync(requestBody);
JavaScript
azureDataLakeConnector: getUploadSession
const options = {
	authProvider,
};

const client = Client.init(options);

let fileUploadSession = await client.api('/external/industryData/dataConnectors/51dca0a0-85f6-4478-f526-08daddab2271/microsoft.graph.industryData.azureDataLakeConnector/getUploadSession')
	.version('beta')
	.get();
PowerShell
Create azureDataLakeConnector
Import-Module Microsoft.Graph.Beta.Search

$params = @{
	"@odata.type" = "#microsoft.graph.industryData.azureDataLakeConnector"
	displayName = "CSV connector"
	"[email protected]" = "https://graph.microsoft.com/beta/external/industryData/sourceSystems('aa050107-5784-4a8e-1876-08daddab21bc')"
	fileFormat = @{
		"@odata.type" = "microsoft.graph.industryData.fileFormatReferenceValue"
		code = "schoolDataSyncV1"
	}
}

New-MgBetaExternalIndustryDataConnector -BodyParameter $params
Python
Create azureDataLakeConnector
# Code snippets are only available for the latest version. Current version is 1.x
from msgraph_beta import GraphServiceClient
from msgraph_beta.generated.models.industry_data.azure_data_lake_connector import AzureDataLakeConnector
from msgraph_beta.generated.models.industry_data.file_format_reference_value import FileFormatReferenceValue
# To initialize your graph_client, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=python
request_body = AzureDataLakeConnector(
	odata_type = "#microsoft.graph.industryData.azureDataLakeConnector",
	display_name = "CSV connector",
	file_format = FileFormatReferenceValue(
		odata_type = "microsoft.graph.industryData.fileFormatReferenceValue",
		code = "schoolDataSyncV1",
	),
	additional_data = {
			"source_system@odata_bind" : "https://graph.microsoft.com/beta/external/industryData/sourceSystems('aa050107-5784-4a8e-1876-08daddab21bc')",
	}
)

result = await graph_client.external.industry_data.data_connectors.post(request_body)

App Registration

1

Navigate to Azure Portal

Go to App registrations in Microsoft Entra admin center

2

Add API Permission

Select your app → API permissions → Add a permission → Microsoft Graph

3

Select Permission Type

Choose Application permissions or delegated permissions and search for IndustryData-DataConnector.ReadWrite.All

4

Grant Admin Consent

Application permissions always require admin consent.