Create Event
Creates an event in Calendar
This activity creates a new event in a user-specified event using the Microsoft Graph Create event API.
Input
Connection Id:
GraphServiceClient VariableRequiredSpecifies the office 365 connection id.Account:
String ArgumentSpecifies an email address with which to interact. This property can include any shared mailbox to which the current user has access rights. If the property field is left empty, the current user's account is used. This is an optional property.Calendar:
Object ArgumentSpecifies the calendar as Calendar that is to be used for creating the event. If a value is not provided, the user's default calendar is used. We can also specify the output variable of the Get Calendars activity which is either Calendar or Default Calendar here. If we are using Calendar property (which is an array) we can directly specify it as input by providing its element. For example : Calendar[1].
Event Content
Body:
String ArgumentRequiredSpecifies the body of the event. If the Is Body HTML property is set to true, then the body needs to be specified in HTML format.Subject:
String ArgumentRequiredSpecifies the subject of the event.Is Body Html: Specifies whether the event body is written in HTML format or not.
Event Scheduling
Start Time:
String ArgumentRequiredSpecifies the start time of the event in DateTime format. The input should be given in double- quotes.End Time:
String ArgumentRequiredSpecifies the end time of the event in DateTime format. The input should be given in double-quotes.Timezone:
String ArgumentSpecifies the time zone in which the Start Time and End Time are to be interpreted. The default value is the local system time zone.
Options
Categories:
String ArgumentSpecifies the categories associated with the event. The category entered must match a name from the user-specified Calendar list of categories. Each of the categories should be separated by a semicolon.

Is All Day: If set to true, the event is scheduled for the entire day and the values entered in the Start Time and End Time properties will be overwritten. If set to true, values should be entered in both the Start Time and End Time properties.
Show As: Specifies the user's availability during the event. By default the value is Free. The available options are:
Unknown
Free
Tentative
Busy
Oof
WorkingElsewhere
Output
Event:
Event VariableSpecifies the created event as an Event object which can be used to add attendees or modify information.
Last updated