Returns the Zip Path for a particular meeting
Request URL:
XML :
http://meeting.zoho.com/api/public/xml/meetings/getZipPath?apikey=[APIKey]&ticket=[Ticket]
JSON : http://meeting.zoho.com/api/public/json/meetings/getZipPath?apikey=[APIKey]&ticket=[Ticket]
Request parameters
Field
|
Description
|
productName
|
The name of the product which
integrates Zoho Meeting |
meetingKey
|
Unique meeting Key
|
Response fields
Field
|
Description
|
zip_path
|
The path from where the zip can be
downloaded.
|
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/getZipPath">
<result>
<meeting>
<zip_path>
http://meeting.zoho.com:80/agent/ZohoMeeting/ZohoMeeting-215080000010.zip
</zip_path>
</meeting>
</result>
</response>
Equivalent JSON response
{
"response":
{
"uri": "/api/private/xml/meetings/getZipPath",
"result":
{
"meeting":
{
"zip_path":
"http://meeting.zoho.com:80/agent/ZohoMeeting/ZohoMeeting-215080000010.zip"
}
}
}
}