deleteMeeting

Tags:  

Delete this meeting.


Request URL:

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

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


Request parameters


Field
Description
meetingKey
The unique key of the meeting which is to be deleted.


Sample Form (POST Method)


<form method="POST"    action="http://meeting.zoho.com/api/private/xml/deleteMeeting?apikey=[APIKEY]&ticket=[Ticket]">

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

<input type="submit" value="Delete Meeting" >

</form>




Response fields

Field
Description
is_deleted
[ true / false ] Whether the meeting is deleted or not

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/deleteMeeting">
<result>
  <meetings>
    <meeting>
      <is_deleted>true</is_deleted> 
      </meeting>
  </meetings>
</result>
</response>


Equivalent JSON response


{
    "response":
    {
        "uri": "/api/private/xml/meetings/deleteMeeting",
             "result":
        {
          
"meetings":
           {
               "meeting":
               {
                      "
is_deleted":"true",
                              }                 
 }
        }
   
}
}


 


 RSS of this page