Microsoft Graph · Schema

invitedUserMessageInfo

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
ccRecipients array Additional recipients the invitation message should be sent to. Currently only one additional recipient is supported.
customizedMessageBody string Customized message body you want to send if you don't want the default message. Only plain text is allowed.
messageLanguage string The language you want to send the default message in. If the customizedMessageBody is specified, this property is ignored, and the message is sent using the customizedMessageBody. The language format
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphinvitedusermessageinfo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.invitedUserMessageInfo",
  "title": "invitedUserMessageInfo",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "ccRecipients": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/microsoft.graph.recipient"
      },
      "description": "Additional recipients the invitation message should be sent to. Currently only one additional recipient is supported."
    },
    "customizedMessageBody": {
      "type": "string",
      "description": "Customized message body you want to send if you don't want the default message. Only plain text is allowed.",
      "nullable": true
    },
    "messageLanguage": {
      "type": "string",
      "description": "The language you want to send the default message in. If the customizedMessageBody is specified, this property is ignored, and the message is sent using the customizedMessageBody. The language format should be in ISO 639. The default is en-US.",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  }
}