Stop
the meeting.
Request URL:
XML :
http://meeting.zoho.com/api/public/xml/meetings/stopMeeting?apikey=[APIKey]
JSON : http://meeting.zoho.com/api/public/json/meetings/stopMeeting?apikey=[APIKey]
Request parameters
Field
|
Description
|
|
meetingKey
|
The unique key of the
meeting. |
Response fields
Field
|
Description
|
agent_response
|
The response from the
agent |
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/stopMeeting">
<result>
<meetings>
<meeting>
<agent_response>received</agent_response>
</meeting>
</meetings>
</result>
</response>
Equivalent JSON response
{
"response":
{
"uri": "/api/public/json/meetings/stopMeeting",
"result":
{
"meetings":
{
"meeting":
{
"agent_response":"received"
}
}
}
}
}