Hello Team,
Using the URL below to get participant’s breakout room id.
“v2/report/meetings/89834796389/participants”
I am trying to get participants in breakout rooms for past meetings. I get the participants but it does not have bo_mtg_id
Response:
{
"attentiveness_score": "",
"customer_key": "",
"duration": 346,
"failover": false,
"groupId": "",
"id": "",
"join_time": "2025-01-07T12:56:34Z",
"leave_time": "2025-01-07T13:02:20Z",
"name": "XXXXX",
"status": "in_waiting_room",
"user_email": "",
"user_id": "XXXXX"
},
The response does not contain break out room id
Here is my header
header_participant = {
"Authorization": f"Bearer {access_token}"
}
URL
response = requests.get(url="v2/report/meetings/84696414148/participants",
headers=header_participant)
the application type is `Server-to-Server`
The response does not contain break out room id