Get the list of participants for a particular meeting.
Request URL:
XML :
http://meeting.zoho.com/api/public/xml/meetings/getParticipantList?apikey=[APIKey]
JSON : http://meeting.zoho.com/api/public/json/meetings/getParticipantList?apikey=[APIKey]
Request parameters
Field
|
Description
|
meetingKey
|
The unique key of the meeting.
|
Response fields
Field
|
Description
|
meeting_participants
|
participants of the meeting
|
Sample Response
The following is the
sample XML response for the above method:
<?xml
version="1.0" encoding="UTF-8" ?>
<response uri="/api/public/xml/meetings/getParticipantList">
<result>
<meeting>
<meeting_participants>
<meeting_participant>joe@b.com</meeting_participant>
<meeting_participant>boss@c.com</meeting_participant>
</meeting_participants>
</meeting>
</result>
</response>
Equivalent JSON response
{
"response":
{
"uri": "/api/public/json/meetings/getParticipantList",
"result":
{
"meeting"
:
{
"meeting_participants":
{
"meeting_participant":
[
"joe@b.com","boss@c.com"
]
}
}
}
}
}