Identify Meeting Participants Uniquely

Depending on your use case, you might want to be able to identify participants across meetings.

Meeting platforms don't expose the email addresses of participants, though there are some some ways to achieve identify participants uniquely across meetings.

Calendar integration

If you're using the calendar integration, you can map users to emails of calendar invites to get their emails.

  • Fuzzy match on calendar event participants
  • Use email address as ID

Benefit: Works across meeting platforms

Con: doesn't work 100% of the time

Zoom: user_conf_id

📘

conf_user_id uniquely identifies participants across Zoom meetings.

    "meeting_participants": [
      {
        "id": 16998240,
        "name": "John Smith",
        "events": [
          {
            "code": "join",
            "created_at": "2024-01-16T22:27:45.928351Z"
          }
        ],
        "is_host": true,
        "platform": "desktop",
        "extra_data": {
          "zoom": {
            "os": 2,
            "guest": false,
            "user_guid": "EF3AL77C-49AB-6F8A-A947-61C6AB57D6E6",
            "conf_user_id": "RiajKBaChMxzJAmuF90nln"
          }
        }
      }
    ],