Thanks for helping me with this. Maybe I should give an example of what I’m doing.
First, I make a meeting with the API. Let’s call it meeting # 91346637404. That works fine.
Then I register a registrant for this meeting by posting to /meetings/91346637404/registrants
. I pass in stuff like name, and I get back something like this:
{"registrant_id":"gHiuVxCRTfuKuGBIo7s5KQ","id":91346637404,"topic":"The name of the meeting","start_time":"2022-01-06T05:00:00Z","join_url":"https:\/\/something.zoom.us\/w\/91346637404?tk=T3gKbNqSMwsrglE5uLX-35XaHsVCY3VAhzhuW4tyhRM.DQMAAAAVRK8SXBZnSGl1VnhDUlRmdUt1R0JJbzdzNtRAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA&pwd=VTY1STEwbGE4ZXRyREo4Q1pSQ0JBUT09"}
Then after the meeting is over, I get a list of attenders by making a GET request to /report/meetings/91346637404/participants?page_size=300&include_fields=registrant_id
This returns to me a JSON object which includes a field called “participants” which is an array. One of the items in this array is this:
{"id":"ABUegZ8UQxmXYOfrL8YVNw","user_id":"16788480","name":"Jimmy Joe Smith","user_email":"participant430926464152077@example.com","join_time":"2022-01-05T23:01:21Z","leave_time":"2022-01-06T00:02:54Z","duration":3693,"attentiveness_score":"","registrant_id":"ABUegZ8UQxmXYOfrL8YVNw","failover":false,"customer_key":""}
So my question is this: How am I supposed to know who this participant is? Neither the “id”, nor the “registrant_id”, nor the “user_id” match anything I get back from registering this person. How do I know which registrant this participant is?
Thanks.