MsGraph_EventCreateObj

Description

This activity allows to create an object representing a Calendar Event.


Basic info

The body of the message associated with the event. It can be in HTML or text format. If it is in HTML format the argument BodyIsHtml must be set to TRUE.

BodyIsHtml InArgument<Boolean>

Set the body content type. When the value is TRUE the content type will be set to HTML, when it is FALSE, the content type is TEXT.

The date, time, and time zone that the event ends. By default, the end time is in UTC. Enable ForceLocalTime to use the local time zone.

ForceLocalTime InArgument<Boolean>

Tells DocsMarshal to force the use of the local time zone to manage the start and end times. In this case, the date will be converted to the equivalent date for the local time zone by adding or subtracting the necessary hours.

IsAllDay InArgument<Boolean>

Indicates if the event lasts all day.

The date, time, and time zone that the event starts. By default, the start time is in UTC. Enable ForceLocalTime to use the local time zone.

Subject InArgument<String>

The text of the event's subject line.


Location

LocationAddress InArgument<String>

Optional email address of the location.

LocationCity InArgument<String>

The city of the location.

LocationCountryOrRegion InArgument<String>

The country or region of the location. It's a free-format string value, for example, "United States".

LocationLatitude InArgument<Double>

The latitude of the location.

LocationLongitude InArgument<Double>

The longitude of the location.

LocationName InArgument<String>

The name associated with the location.

LocationPostalCode InArgument<String>

The postal code of the location.

LocationState InArgument<String>

The state of the location.

LocationStreet InArgument<String>

The street of the location.

LocationType EEventLocationType?

The type of location. The possible values are: default, conferenceRoom, homeAddress, businessAddress,geoCoordinates, streetAddress, hotel, restaurant, localBusiness, postalAddress. Read-only. Use this argument to assign the value directly from the drop-down menu.

LocationTypeDyn InArgument<EEventLocationType>

The type of location. The possible values are: default, conferenceRoom, homeAddress, businessAddress,geoCoordinates, streetAddress, hotel, restaurant, localBusiness, postalAddress. Read-only. Use this argument is the value you want to set is stored in a variable.


Misc

Result OutArgument<MsEvent> REQUIRED

The created event.


Organizer

IsOrganizer InArgument<Boolean>

Set to true if the owner of the calendar (specified by the "owner" property of the calendar) is the organizer of the event (specified by the "organizer" property of the event). If the organizer is another user you have to set this argument to false and to give a value to OrganizerName and OrganizerEmail arguments. If the event organizer is another user you must set this argument to false and assign a value to the OrganizerName and OrganizerEmail arguments.

OrganizerEmail InArgument<String>

The email of the organizer of the event. Use this argument only when the organizer is not the owner of the calendar.

OrganizerName InArgument<String>

The name of the organizer of the event. Use this argument only when the organizer is not the owner of the calendar.

ResponseRequested InArgument<Boolean>

Default is true, which represents the organizer would like an invitee to send a response to the event.


Settings

Importance EEventImportance?

The importance of the event. The possible values are: low, normal, high. Use this argument to assign the value directly from the drop-down menu.

ImportanceDyn InArgument<EEventImportance>

The importance of the event. The possible values are: low, normal, high. Use this argument is the value you want to set is stored in a variable.

IsCancelled InArgument<Boolean>

Set to true if the event has been canceled.

IsReminderOn InArgument<Boolean>

Set to true if an alert is set to remind the user of the event.

ReminderMinutesBeforeStart InArgument<Int32>

The number of minutes before the event start time that the reminder alert occurs.

Sensitivity EEventSensitivity?

The sensitivity of the Event. The possible values are: normal, personal, private, confidential. Use this argument to assign the value directly from the drop-down menu.

SensitivityDyn InArgument<EEventSensitivity>

The sensitivity of the Event. The possible values are: normal, personal, private, confidential. Use this argument is the value you want to set is stored in a variable.

ShowAs EEventShowAs?

The status to show. The possible values are: free, tentative, busy, oof, workingElsewhere, unknown. Use this argument to assign the value directly from the drop-down menu.

The status to show. The possible values are: free, tentative, busy, oof, workingElsewhere, unknown. Use this argument is the value you want to set is stored in a variable.