Can't create Panelist using Zoom API

Description
Hello all,

I created webinar via zoom API through C#
and got webinarId correclty, and tried to add panelists to this webinar using Zoom API, by calling
webinars/{webinarId}/panelists which is post method

I pass this body to the POST Method :
{
“panelist”: [
{
“name”: “Mohab”,
“email”: “a.elweshahy@live.com”,
“join_url”: null,
“id”: null
},
{
“name”: “Ayman”,
“email”: “a.alweshahy@gmail.com”,
“join_url”: null,
“id”: null
}
],
“page_count”: 0,
“page_number”: 0,
“page_size”: 0,
“total_records”: 0
}

the code which call the panelist api is

        var request = BuildRequestAuthorization("webinars/{webinarId}/panelists", Method.POST);
        request.AddParameter("webinarId", webinarId, ParameterType.UrlSegment);
        request.AddJsonBody(listPanelists); 
        var response = WebClient.Execute<Panelist>(request);

And I got this response:
“StatusCode: Created, Content-Type: application/json; charset=UTF-8, Content-Length: 56)”

but actually there is no any panelists added in fact in this webinar
i don’t know where is the problem here

Hi,

can you please send us the complete request along with the webinar ID at developersupport@zoom.us so that we could investigate this?

Good morning, I added panelist to my webinar and got this response Array ( [id] => xxxxxxxxxx [updated_at] => 2020-08-30T02:26:35Z ), but when I checked it on my zoom dashboard, no panelist was added. What can I do.

Hey @theadesami,

Can you please send us the complete request along with the webinar ID at developersupport@zoom.us so that we could investigate this?

Thanks,
Tommy

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.