Microsoft Graph · Schema

onlineMeetingInfo

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
conferenceId string The ID of the conference.
joinUrl string The external link that launches the online meeting. This is a URL that clients launch into a browser and will redirect the user to join the meeting.
phones array All of the phone numbers associated with this conference.
quickDial string The preformatted quick dial for this call.
tollFreeNumbers array The toll free numbers that can be used to join the conference.
tollNumber string The toll number that can be used to join the conference.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphonlinemeetinginfo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.onlineMeetingInfo",
  "title": "onlineMeetingInfo",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "conferenceId": {
      "type": "string",
      "description": "The ID of the conference.",
      "nullable": true
    },
    "joinUrl": {
      "type": "string",
      "description": "The external link that launches the online meeting. This is a URL that clients launch into a browser and will redirect the user to join the meeting.",
      "nullable": true
    },
    "phones": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/microsoft.graph.phone"
      },
      "description": "All of the phone numbers associated with this conference."
    },
    "quickDial": {
      "type": "string",
      "description": "The preformatted quick dial for this call.",
      "nullable": true
    },
    "tollFreeNumbers": {
      "type": "array",
      "items": {
        "type": "string",
        "nullable": true
      },
      "description": "The toll free numbers that can be used to join the conference."
    },
    "tollNumber": {
      "type": "string",
      "description": "The toll number that can be used to join the conference.",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  }
}