Webex · Schema

MeetingRecordingArchiveUser

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
correlationId number An internal ID that is associated with each join.
displayName string Display name for the meeting participant.
email string Email address for the meeting participant.
View JSON Schema on GitHub

JSON Schema

webex-meetingrecordingarchiveuser-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MeetingRecordingArchiveUser",
  "title": "MeetingRecordingArchiveUser",
  "type": "object",
  "properties": {
    "correlationId": {
      "type": "number",
      "example": 28208023,
      "description": "An internal ID that is associated with each join."
    },
    "displayName": {
      "type": "string",
      "example": "John Andersen",
      "description": "Display name for the meeting participant."
    },
    "email": {
      "type": "string",
      "example": "[email protected]",
      "description": "Email address for the meeting participant."
    }
  }
}