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