Create Meeting.
Request URL:
XML :
http://meeting.zoho.com/api/private/xml/meetings/createMeeting?apikey=[APIKey]&ticket=[Ticket]
JSON : http://meeting.zoho.com/api/private/json/meetings/createMeeting?apikey=[APIKey]&ticket=[Ticket]
Request parameters
Field
|
Description
|
|
topic
|
The topic for the meeting to be
created. |
presenter[optional]
|
The email id:skypeid ( if you skype
is true) of the person who will start the meeting.
|
participants[optional]
|
The list of ',' separated
emailid:skypeid of persons who will attend this meeting. |
source[optional]
|
The name of the product which
integrates ZohoMeeting
|
date[optional]
|
The meeting date in the format
YYYY-MM-DD HH:mm
|
| agenda[optional] |
The meeting agenda
|
| skype[optional] |
specify if skype conferencing is to
be enabled yes OR no |
chat[optional]
|
specify if chat
conferencing is to be enabled yes OR no |
agentType[optional]
|
specify whether the
control has to be automatic or prompted auto OR prompt |
sendMail[optional]
|
specify if mails have
to be sent to participants yes OR no |
timeZone[optional]
|
The timeZone of the meeting
|
Sample Form (POST Method)
<form method="POST"
action="http://meeting.zoho.com/api/private/xml/meetings/createMeeting?apikey=[APIKey]&ticket=[Ticket]">
<input type="hidden" name="topic" value="My
Meeting">
<input type="hidden" name="skype" value="yes">
<input type="hidden" name="presenter" value="john@a.com:john85">
<input type="hidden" name="participants" value="joe@b.com:meetjoe,boss@c.com:iamtheboss">
<input type="submit" value="Create Meeting">
</form>
Response fields
Field
|
Description
|
meetingKey
|
The key with which the meeting can
be started.
|
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/createMeeting">
<result>
<meetings>
<meeting>
<meetingKey>41608000001080931</zip_path>
</meeting>
</meetings>
</result>
</response>
Equivalent JSON response
{
"response":
{
"uri": "/api/private/xml/meetings/createMeeting",
"result":
{
"meetings":
{
"meeting":
{
"meetingKey":"41608000001080931"
}
}
}
}
}