Invitations

Invitation method allows you to to send invitation email for particular conference to your participants, conderence ID number, email address and language is required. Start with preparing required data as follows:

1
2
3
4
5
6
$params = array(
    'attendees' => array(
        array('email' => 'example@domain.com')
    ),
  'template' => 'advanced'
);
1
2
3
4
5
params = {
    'attendees' => [
        {'email' => 'example@domain.com'}
    ],
   'template' => 'advanced'
}
1
2
3
4
5
params = {
    'attendees' : [
        {'email' : 'example@domain.com'}
    ],
    'template' : 'advanced'
}

Now simply send request using the sendConferenceEmailInvitations method.

1
2
3
4
5
try {
    $client->sendConferenceEmailInvitations($conference_id, 'en', $params);
} catch (Exception $e) {
     // handle exceptions here
}
1
2
3
4
5
begin
    client.sendConferenceEmailInvitations(room_id, 'en', params)
rescue ClickMeeting::ClientError => e
    # handle exceptions here
end
1
2
3
4
5
try:
    client.sendConferenceEmailInvitations(room_id, 'en', params)
except Exception, e:
    # handle exceptions here

You can find all the structures’ descriptions in the API Function Reference manual.