Send
messages to Zoho Meeting agent.
Request URL:
XML :
http://meeting.zoho.com/api/private/xml/meetings/sendAgentMessages?apikey=[APIKey]&ticket=[Ticket]
JSON : http://meeting.zoho.com/api/private/json/meetings/sendAgentMessages?apikey=[APIKey]&ticket=[Ticket]
Request parameters
Field
|
Description |
|
meetingKey
|
The unique key of the
meeting. |
message
|
The message which needs to be sent to
the agent. E.g, STARTSHARE |
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/private/xml/meetings/sendAgentMessages">
<result>
<meeting>
<agent_response>received</agent_response>
</meeting>
</result>
</response>
Equivalent JSON response
{
"response":
{
"uri": "/api/private/xml/meetings/sendAgentMessages",
"result":
{
"meeting":
{
"agent_response":"received"
}
}
}
}