Get the list of ports used by the respective components in
Zoho Meeting.
Request URL:
XML :
http://meeting.zoho.com/api/private/xml/meetings/getPortList?apikey=[APIKey]&ticket=[Ticket]
JSON :
http://meeting.zoho.com/api/private/json/meetings/getPortList?apikey=[APIKey]&ticket=[Ticket]
Response fields
Field
|
Description
|
gateway_ssl
|
The SSL port used by the gateway.
|
gateway_nonssl
|
The NON-SSL port used by the
gateway. |
flash
|
The port used by flash
viewer |
| nonflash |
The port used by non-flash viewers ( ActiveX and Java Viewers )
|
agent
|
The port used by the Zoho Meeting
Agent
|
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/getMeetingList">
<result>
<meetings>
<meeting>
<gateway_ssl>443</gateway_ssl>
<gateway_nonssl>8444</gateway_nonssl>
<flash>8444</flash>
<nonflash>443</nonflash>
<agent>443</agent>
</meeting>
</meetings>
</result>
</response>
Equivalent JSON response
{
"response":
{
"uri": "/api/private/xml/meetings/getMeetingList",
"result":
{
"meetings":
{
"meeting":
{
"gateway_ssl":"443",
"gateway_nonssl":"8444",
"flash":"8444",
"nonflash":"443",
"agent":"443",
}
}
}
}
}