MessageCreateRequest

CloudCollaborationEnterpriseMicrosoftProductivity

Properties

Name Type Description
subject string The subject of the message.
toRecipients array
ccRecipients array
bccRecipients array
replyTo array
importance string
isDeliveryReceiptRequested boolean
isReadReceiptRequested boolean
categories array
View JSON Schema on GitHub

JSON Schema

microsoft-graph-message-create-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "MessageCreateRequest",
  "type": "object",
  "properties": {
    "subject": {
      "type": "string",
      "description": "The subject of the message."
    },
    "toRecipients": {
      "type": "array"
    },
    "ccRecipients": {
      "type": "array"
    },
    "bccRecipients": {
      "type": "array"
    },
    "replyTo": {
      "type": "array"
    },
    "importance": {
      "type": "string"
    },
    "isDeliveryReceiptRequested": {
      "type": "boolean"
    },
    "isReadReceiptRequested": {
      "type": "boolean"
    },
    "categories": {
      "type": "array"
    }
  }
}