notificationChannel resource type

Namespace: microsoft.graph.deviceManagement

Important

APIs under the /beta version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.

Represents information about the notification channels of an alert rule selected by a user.

Note

This API is part of the alert monitoring API set which currently supports only Windows 365 and Cloud PC scenarios. The API set allows admins to set up rules to alert issues with provisioning Cloud PCs, uploading Cloud PC images, and checking Azure network connections.

Have a different scenario that can use additional programmatic alert support on the Microsoft Endpoint Manager admin center? Suggest the feature or vote for existing feature requests.

Properties

Property Type Description
notificationChannelType microsoft.graph.deviceManagement.notificationChannelType The type of the notification channel. The possible values are: portal, email, phoneCall, sms, unknownFutureValue.
notificationReceivers microsoft.graph.deviceManagement.notificationReceiver collection Information about the notification receivers, such as locale and contact information. For example, en-us for locale and serena.davis@contoso.com for contact information.

notificationChannelType values

Member Description
portal Indicates that the notification message was published via the Microsoft Endpoint Manager admin center.
email Indicates that the notification message was published via email.
phoneCall Indicates that the notification message was published via phone call.
sms Indicates that the notification message was published via SMS.
unknownFutureValue Evolvable enumeration sentinel value. Do not use.

Relationships

None.

JSON representation

The following is a JSON representation of the resource.

{
  "@odata.type": "#microsoft.graph.deviceManagement.notificationChannel",
  "notificationChannelType": "String",
  "notificationReceivers": [
    {
        "@odata.type": "#microsoft.graph.deviceManagement.notificationReceiver"
    }
  ]
}