calendarEventNotify
Sends calendar event notification request object
/notification/mail/calendar-event-notify
                        
Usage and SDK Samples
curl -X POST\
-H "Accept: */*"\
-H "Content-Type: application/json"\
"/gw/notification-mail-server/notification/mail/calendar-event-notify"
                          import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.NotificationMailAPIApi;
import java.io.File;
import java.util.*;
public class NotificationMailAPIApiExample {
    public static void main(String[] args) {
        
        NotificationMailAPIApi apiInstance = new NotificationMailAPIApi();
        HvlCalendarEventNotificationRequestModel body = ; // HvlCalendarEventNotificationRequestModel | 
        try {
            HvlResponseVoid result = apiInstance.calendarEventNotify(body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling NotificationMailAPIApi#calendarEventNotify");
            e.printStackTrace();
        }
    }
}
                          import io.swagger.client.api.NotificationMailAPIApi;
public class NotificationMailAPIApiExample {
    public static void main(String[] args) {
        NotificationMailAPIApi apiInstance = new NotificationMailAPIApi();
        HvlCalendarEventNotificationRequestModel body = ; // HvlCalendarEventNotificationRequestModel | 
        try {
            HvlResponseVoid result = apiInstance.calendarEventNotify(body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling NotificationMailAPIApi#calendarEventNotify");
            e.printStackTrace();
        }
    }
}
                          HvlCalendarEventNotificationRequestModel *body = ; // 
NotificationMailAPIApi *apiInstance = [[NotificationMailAPIApi alloc] init];
// Sends calendar event notification request object
[apiInstance calendarEventNotifyWith:body
              completionHandler: ^(HvlResponseVoid output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
                            var HvlNotificationMailServer = require('hvl_notification_mail_server');
var api = new HvlNotificationMailServer.NotificationMailAPIApi()
var body = ; // {{HvlCalendarEventNotificationRequestModel}} 
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.calendarEventNotify(body, callback);
                            using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;
namespace Example
{
    public class calendarEventNotifyExample
    {
        public void main()
        {
            var apiInstance = new NotificationMailAPIApi();
            var body = new HvlCalendarEventNotificationRequestModel(); // HvlCalendarEventNotificationRequestModel | 
            try
            {
                // Sends calendar event notification request object
                HvlResponseVoid result = apiInstance.calendarEventNotify(body);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling NotificationMailAPIApi.calendarEventNotify: " + e.Message );
            }
        }
    }
}
                            <?php
require_once(__DIR__ . '/vendor/autoload.php');
$api_instance = new Swagger\Client\ApiNotificationMailAPIApi();
$body = ; // HvlCalendarEventNotificationRequestModel | 
try {
    $result = $api_instance->calendarEventNotify($body);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling NotificationMailAPIApi->calendarEventNotify: ', $e->getMessage(), PHP_EOL;
}
?>
                            use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::NotificationMailAPIApi;
my $api_instance = WWW::SwaggerClient::NotificationMailAPIApi->new();
my $body = WWW::SwaggerClient::Object::HvlCalendarEventNotificationRequestModel->new(); # HvlCalendarEventNotificationRequestModel | 
eval { 
    my $result = $api_instance->calendarEventNotify(body => $body);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling NotificationMailAPIApi->calendarEventNotify: $@\n";
}
                            from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint
# create an instance of the API class
api_instance = swagger_client.NotificationMailAPIApi()
body =  # HvlCalendarEventNotificationRequestModel | 
try: 
    # Sends calendar event notification request object
    api_response = api_instance.calendar_event_notify(body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling NotificationMailAPIApi->calendarEventNotify: %s\n" % e)
                            Parameters
| Name | Description | 
|---|---|
| body * |