Meeting details
Request URL:
XML :
http://meeting.zoho.com/api/public/xml/meetings/getMeetingDetails?apikey=[APIKey]
JSON : http://meeting.zoho.com/api/public/json/meetings/getMeetingDetails?apikey=[APIKey]
Request parameters
Field
|
Description
|
meetingKey
|
The unique key of the meeting.
|
Response fields
Field
|
Description
|
meeting_topic
|
The Meeting topic.
|
meeting_date
|
Scheduled date and time of the
meeting.
|
meeting_timezone
|
The Time Zone of the scheduled
time.
|
| 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 / Not Started |
meeting_agenda
|
The agenda of the meeting
|
agent_type
|
The type of agent - auto / prompt
|
meeting_role
|
null
|
meeting_skype
|
yes / no
|
meeting_presenter
|
Email ID & Skype ID, if meeting_skype is yes, of presenter
|
meeting_participants
|
List of 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/getMeetingDetails">
<result>
<meetings>
<meeting>
<meeting_topic>Teem
Meet</meeting_topic>
<meeting_date>Dec 24, 2007 16:40</meeting_date>
<meeting_timezone>Asia/Calcutta</meeting_timezone>
<meeting_key>215080000010804078</meeting_key>
<agent_ip>192.168.111.47</agent_ip>
<meeting_status>Started</meeting_status>
<meeting_agenda>This week to-dos will be
discussed</meeting_agenda>
<agent_type>auto</agent_type>
<meeting_role>null</meeting_role>
<meeting_skype>yes</meeting_skype>
<meeting_presenter>
<emailid>john@a.com</emailid>
<skypeid>john85</skypeid>
</meeting_presenter>
<meeting_participants>
<meeting_participant>
<emailid>joe@b.com</emailid>
<skypeid>meetjoe</skypeid>
</meeting_participant>
<meeting_participant>
<emailid>boss@c.com</emailid>
<skypeid>iamtheboss</skypeid>
</meeting_participant>
</meeting_participants>
</meeting>
</meetings>
</result>
</response>
Equivalent JSON response
{
"response":
{
"uri": "/api/ublic/json/meetings/getMeetingDetails",
"result":
{
"meetings":
{
"meeting" :
{
"agent_ip":"192.168.111.47",
"meeting_date":"Dec 24, 2007 16:40",
"meeting_status":"Started",
"meeting_participants":
{
"meeting_participant":
[
{
"skypeid":"meetjoe","emailid":"joe@b.com"
},
{
"skypeid":"iamtheboss","emailid":"boss@b.com"
}
]
},
"meeting_role":"null",
"agent_type":"auto",
"meeting_skype":"yes",
"meeting_agenda":"This week to-dos will be
discussed",
"meeting_topic":"Team Meet",
"meeting_timezone":"Asia/Calcutta",
"meeting_presenter":
{
"skypeid":"john85","emailid":"john@a.com"
},
"meeting_key":"215080000010804078",
}
}
}
}
}