Microsoft Graph · Schema

joinMeetingIdSettings

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
isPasscodeRequired boolean Indicates whether a passcode is required to join a meeting when using joinMeetingId. Optional.
joinMeetingId string The meeting ID to be used to join a meeting. Optional. Read-only.
passcode string The passcode to join a meeting. Optional. Read-only.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphjoinmeetingidsettings-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.joinMeetingIdSettings",
  "title": "joinMeetingIdSettings",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "isPasscodeRequired": {
      "type": "boolean",
      "description": "Indicates whether a passcode is required to join a meeting when using joinMeetingId. Optional.",
      "nullable": true
    },
    "joinMeetingId": {
      "type": "string",
      "description": "The meeting ID to be used to join a meeting. Optional. Read-only.",
      "nullable": true
    },
    "passcode": {
      "type": "string",
      "description": "The passcode to join a meeting.  Optional. Read-only.",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  }
}