Get the list of meetings for the user in his Zoho Meeting
account
Request URL:
XML :
http://meeting.zoho.com/api/private/xml/meetings/getMeetingList?apikey= [API
Key]&ticket=[Ticket]
JSON : http://meeting.zoho.com/api/private/json/meetings/getMeetingList?apikey=
[API
Key]&ticket=[Ticket]
Response fields
Field
|
Description
|
meeting_topic
|
The topic.
|
meeting_date
|
The unique key for a
particular meeting.
|
meeting_timezone
|
The timezone of this meeting
|
| meeting_key |
The unique key for a
particular meeting. |
| agent_ip |
The IP Address from where the Zoho
Meeting agent was started. |
| meeting_status |
The current status of the meeting -
STARTED , NOTSTARTED , CANCELLED |
meeting_agenda
|
The agenda of this meeting
|
agent_type
|
The type of agent - AUTO / PROMPT
|
meeting_role
|
Your role in this meeting -
PRESSENTER / PARTICIPANT
|
meeting_skype
|
|
emailid
|
emailid of presenter/participant
|
skypeid
|
skypeid of
presenter/participant |
Sample Response
The following is the
sample XML response for the above method:
<?xml
version="1.0" encoding="UTF-8" ?>
<response uri="/api/private/xml/meetings/getMeetingList">
<result>
<meetings>
<meeting>
<meeting_topic>My
meeting</meeting_topic>
<meeting_date>Dec 24, 2007 16:40</meeting_date>
<meeting_timezone>Asia/Calcutta</meeting_timezone>
<meeting_key>B3D0A0000000012C3E</meeting_key>
<agent_ip>192.168.111.47</agent_ip>
<meeting_status>STARTED</meeting_status>
<meeting_agenda>Team Meet</meeting_agenda>
<agent_type>Auto</agent_type>
<meeting_role>Participant</meeting_role>
<meeting_skype>null</meeting_skype>
<meeting_presenter>
<emailid>jbalaji@a.com</emailid>
<skypeid>my.skype</skypeid>
</meeting_presenter>
<meeting_participants>
<meeting_participant>
<emailid>jb@b.com</emailid>
<skypeid>my.skype</skypeid>
</meeting_participant>
</meeting_participants>
</meeting>
</meetings>
</result>
</response>
Equivalent JSON response
{
"response":
{
"uri": "/api/private/xml/meetings/getMeetingList",
"result":
{
"meetings":
{
"meeting" :
[
{
"agent_ip":"192.168.4.122",
"meeting_date":"Dec 24, 2007 16:40",
"meeting_status":"STARTED",
"meeting_participants":
{
"meeting_participant":{"emailid:"joe@a.com"}
},
"meeting_role":"Participant",
"agent_type":"Auto",
"meeting_skype":"null",
"meeting_agenda":"Team meet",
"meeting_topic":"My meeting",
"meeting_timezone":"Asia/Calcutta",
"meeting_presenter":{"emailid:jb@a.com"},
"meeting_key":"B3D0A0000000012C3E",
}
]
}
}
}
}