How to check participant mail id in webex

To check a participant's email ID in Webex, you can follow these steps:

Method 1: Using the Webex Meeting Center

  1. Log in to the Webex Meeting Center as the host or organizer of the meeting.
  2. Click on the "Participants" tab.
  3. Click on the "Edit" button next to the participant's name.
  4. Scroll down to the "Contact Information" section.
  5. Look for the "Email" field, which will display the participant's email address.

Method 2: Using the Webex Web App

  1. Log in to the Webex Web App as the host or organizer of the meeting.
  2. Click on the "Meetings" tab.
  3. Click on the meeting you want to view.
  4. Click on the "Participants" tab.
  5. Click on the "Edit" button next to the participant's name.
  6. Scroll down to the "Contact Information" section.
  7. Look for the "Email" field, which will display the participant's email address.

Method 3: Using the Webex API

If you have access to the Webex API, you can use the GET /meetings/{meetingId}/participants endpoint to retrieve a list of participants, including their email addresses. You can then parse the response to extract the email addresses.

For example, using the Webex API in Python:

import requests

meeting_id = "your_meeting_id"
api_key = "your_api_key"
api_secret = "your_api_secret"

url = f"https://api.webex.com/v1/meetings/{meeting_id}/participants"
headers = {
    "Authorization": f"Bearer {api_key}",
    "Content-Type": "application/json"
}

response = requests.get(url, headers=headers)

if response.status_code == 200:
    participants = response.json()["items"]
    for participant in participants:
        print(participant["email"])
else:
    print("Error:", response.status_code)

Note that you need to replace your_meeting_id, your_api_key, and your_api_secret with your actual Webex meeting ID, API key, and API secret.