Create Event
Creates an event in Calendar
Last updated
Creates an event in Calendar
Last updated
This activity creates a new event in a user-specified event using the Microsoft Graph API.
Connection Id: Required
Specifies the office 365 connection id.
Account: Specifies 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: Specifies the calendar as 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].
Body: Required
Specifies 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: Required
Specifies the subject of the event.
Is Body Html: Specifies whether the event body is written in HTML format or not.
Start Time: Required
Specifies the start time of the event in format. The input should be given in double- quotes.
End Time: Required
Specifies the end time of the event in format. The input should be given in double-quotes.
Timezone: Specifies the time zone in which the Start Time and End Time are to be interpreted. The default value is the local system time zone.
Categories: Specifies 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
Event: Specifies the created event as an object which can be used to add attendees or modify information.