Zoho Meeting > Meeting - Private APIs > inviteParticipants

inviteParticipants

Tags:  

Invite Participants

Request URL :

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

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


Request parameters


Field
Description

meetingKey

 

The topic for the meeting to be created.
inviteeMailId
The list of ',' separated email ids of persons who will attend this meeting
sendMail[optional]
option to send mail to invitees (yes/no)


Sample Form (POST Method)


<form method="POST"    action = "http://meeting.zoho.com/api/private/xml/inviteParticipant?apikey=[APIKEY]&ticket=[Ticket]">
<input type="hidden" name="meetingKey" value="14040000010809155">
<input type="hidden" name="inviteeMailId value="john@a.com">
<input type="submit" value="Invite Participant" >
</form>



Response fields


Field
Description
invite_participant
Confirmation Message - Participant Invited


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/inviteParticipant">
<result>
  <meeting>
    <invite_participant>Participant Invited</invite_participant> 
    </meeting>
</result>
</response>


Equivalent JSON response


{

    "response":
    {
        "uri":"/api/private/json/meetings/inviteParticipant",
        "result":
        {
             "meeting":
            {
                "invite_participant":"Participant Invited"
            }
        }
    }
}

 


 RSS of this page