Meeting Metadata & Participants

Bot objects will contain meeting metadata and a list of participants after they've successfully joined a meeting.

Since the bot only has access to this data after joining the call, these fields will only be populated after the bot has become in_call_not_recording.

These fields can be accessed on bot objects when calling Retrieve Bot and List Bots.


meeting_participants

πŸ“˜

The meeting_participants list is available on all supported meeting platforms.

{
  ...
  "meeting_participants": [
  
    // Zoom
    {
      "id": 187298462,
      "name": "John Smith",
      "events": [
        {
          "code": "join",
          "created_at": "2024-01-26T19:50:22.473707Z"
        },
        {
          "code": "leave",
          "created_at": "2024-01-26T19:51:18.904019Z"
        }
      ],
      "is_host": true,
      "platform": "unknown",
      "extra_data": {
        "zoom": {
          "os": 2,
          "guest": false,
          "user_guid": "...",
          "conf_user_id": "..."
        }
      }
    },
    
    // Meet
    {
      "id": 100,
      "name": "John Smith",
      "events": [
        {
          "code": "join",
          "created_at": "2024-01-26T19:50:22.473707Z"
        },
        {
          "code": "leave",
          "created_at": "2024-01-26T19:51:18.904019Z"
        }
      ],
      "is_host": true,
      "platform": "unknown",
      "extra_data": null
    },
    
    // Teams
    {
      "id": 100,
      "name": "John Smith",
      "events": [
        {
          "code": "join",
          "created_at": "2024-01-22T19:51:39.095356Z"
        },
        {
          "code": "leave",
          "created_at": "2024-01-22T19:51:46.900889Z"
        }
      ],
      "is_host": true,
      "platform": "unknown",
      "extra_data": {
        "microsoft_teams": {
          "role": "admin",
          "user_id": "8:live:.cid...",
          "tenant_id": "",
          "meeting_role": "organizer",
          "client_version": "SkypeSpaces/1415/1.0...",
          "participant_type": "inTenant"
        }
      }
    },
    
    // Webex
    {
      "id": 100,
      "name": "John Smith",
      "events": [
        {
          "code": "join",
          "created_at": "2024-04-22T23:33:15.003949Z"
        },
        {
          "code": "leave",
          "created_at": "2024-04-22T23:33:42.006927Z"
        }
      ],
      "is_host": true,
      "platform": "unknown",
      "extra_data": null
    }
  ]
}

meeting_metadata


Platform Support

PlatformSupported?
Zoom:white-check-mark:
Google Meet:x:
Microsoft Teams:x:
Cisco Webex:x:
Slack Huddles:white-check-mark:

Zoom

{
  "meeting_metadata": {
      "title": "John Smith's Personal Meeting Room",
      "zoom_meeting_uuid": "x7OAB2GkQmFZuNhAY+nTNg=="
    },
  },
  ...
}

Slack Huddles

{
  "meeting_metadata": {
      "huddle_id": "...",
      "channel_id": "..."
    },
  },
  ...
}