localizedNotificationMessage resource type

Namespace: microsoft.graph

Note: The Microsoft Graph API for Intune requires an active Intune license for the tenant.

The text content of a Notification Message Template for the specified locale.

Methods

Method Return Type Description
List localizedNotificationMessages localizedNotificationMessage collection List properties and relationships of the localizedNotificationMessage objects.
Get localizedNotificationMessage localizedNotificationMessage Read properties and relationships of the localizedNotificationMessage object.
Create localizedNotificationMessage localizedNotificationMessage Create a new localizedNotificationMessage object.
Delete localizedNotificationMessage None Deletes a localizedNotificationMessage.
Update localizedNotificationMessage localizedNotificationMessage Update the properties of a localizedNotificationMessage object.

Properties

Property Type Description
id String Key of the entity.
lastModifiedDateTime DateTimeOffset DateTime the object was last modified.
locale String The Locale for which this message is destined.
subject String The Message Template Subject.
messageTemplate String The Message Template content.
isDefault Boolean Flag to indicate whether or not this is the default locale for language fallback. This flag can only be set. To unset, set this property to true on another Localized Notification Message.

Relationships

None

JSON Representation

Here is a JSON representation of the resource.

{
  "@odata.type": "#microsoft.graph.localizedNotificationMessage",
  "id": "String (identifier)",
  "lastModifiedDateTime": "String (timestamp)",
  "locale": "String",
  "subject": "String",
  "messageTemplate": "String",
  "isDefault": true
}