Create windowsPrivacyDataAccessControlItem
Namespace: microsoft.graph
Important: Microsoft Graph APIs under the /beta version are subject to change; production use is not supported.
Note: The Microsoft Graph API for Intune requires an active Intune license for the tenant.
Create a new windowsPrivacyDataAccessControlItem object.
This API is available in the following national cloud deployments.
Global service | US Government L4 | US Government L5 (DOD) | China operated by 21Vianet |
---|---|---|---|
✅ | ✅ | ✅ | ✅ |
Permissions
One of the following permissions is required to call this API. To learn more, including how to choose permissions, see Permissions.
Permission type | Permissions (from least to most privileged) |
---|---|
Delegated (work or school account) | DeviceManagementConfiguration.ReadWrite.All |
Delegated (personal Microsoft account) | Not supported. |
Application | DeviceManagementConfiguration.ReadWrite.All |
HTTP Request
POST /deviceManagement/deviceConfigurations/{deviceConfigurationId}/microsoft.graph.windows10GeneralConfiguration/privacyAccessControls
Request headers
Header | Value |
---|---|
Authorization | Bearer {token}. Required. Learn more about authentication and authorization. |
Accept | application/json |
Request body
In the request body, supply a JSON representation for the windowsPrivacyDataAccessControlItem object.
The following table shows the properties that are required when you create the windowsPrivacyDataAccessControlItem.
Property | Type | Description |
---|---|---|
id | String | The key of WindowsPrivacyDataAccessControlItem. |
accessLevel | windowsPrivacyDataAccessLevel | This indicates an access level for the privacy data category to which the specified application will be given to. Possible values are: notConfigured , forceAllow , forceDeny , userInControl . |
dataCategory | windowsPrivacyDataCategory | This indicates a privacy data category to which the specific access control will apply. Possible values are: notConfigured , accountInfo , appsRunInBackground , calendar , callHistory , camera , contacts , diagnosticsInfo , email , location , messaging , microphone , motion , notifications , phone , radios , tasks , syncWithDevices , trustedDevices . |
appPackageFamilyName | String | The Package Family Name of a Windows app. When set, the access level applies to the specified application. |
appDisplayName | String | The Package Family Name of a Windows app. When set, the access level applies to the specified application. |
Response
If successful, this method returns a 201 Created
response code and a windowsPrivacyDataAccessControlItem object in the response body.
Example
Request
Here is an example of the request.
POST https://graph.microsoft.com/beta/deviceManagement/deviceConfigurations/{deviceConfigurationId}/microsoft.graph.windows10GeneralConfiguration/privacyAccessControls
Content-type: application/json
Content-length: 250
{
"@odata.type": "#microsoft.graph.windowsPrivacyDataAccessControlItem",
"accessLevel": "forceAllow",
"dataCategory": "accountInfo",
"appPackageFamilyName": "App Package Family Name value",
"appDisplayName": "App Display Name value"
}
Response
Here is an example of the response. Note: The response object shown here may be truncated for brevity. All of the properties will be returned from an actual call.
HTTP/1.1 201 Created
Content-Type: application/json
Content-Length: 299
{
"@odata.type": "#microsoft.graph.windowsPrivacyDataAccessControlItem",
"id": "03b15556-5556-03b1-5655-b1035655b103",
"accessLevel": "forceAllow",
"dataCategory": "accountInfo",
"appPackageFamilyName": "App Package Family Name value",
"appDisplayName": "App Display Name value"
}