updateMeeting

Tags:  

Update Meeting.


Request URL:

                            XML : http://meeting.zoho.com/api/private/xml/meetings/updateMeeting?apikey=[APIKey]
&ticket=[Ticket]

                            JSON : http://meeting.zoho.com/api/private/json/meetings/updateMeeting?apikey=[APIKey]&ticket=[Ticket]


Request parameters


Field
Description

meetingKey

 

The topic for the meeting to be created.
topic[optional]
The meeting topic
presenter[optional]
The emailid:skypeid ( skypeid will be taken only if value for skype is yes) of the person who will start the meeting.
participants[optional]
The list of ',' separated emailid:skypeid of persons who will attend this meeting.
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/updateMeeting?apikey=[APIKEY]&ticket=[Ticket]">

<input type="hidden" name="meetingKey" value="
416080000010809310">

<input type="hidden" name="topic" value="My Meeting">

<input type="hidden" name="skype" value="no">

<input type="hidden" name="presenter" value="john@a.com:">

<input type="hidden" name="participants" value="joe@b.com:,boss@c.com:">

<input type="submit" value="Save change" >

</form>




Response fields

Field
Description
status
Updated successfully

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/updateMeeting">
<result>
  <meeting>Updated successfully</meeting>
</result>
</response>


Equivalent JSON response

{
    "response":
    {
        "uri":"/api/private/json/meetings/updateMeeting",
        "result":
        {
            "meeting":"Updated successfully"
        }
    }
}

 


 RSS of this page