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 Variable Required Specifies the office 365 connection id.

  • Account: String Argument 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: Object Argument Specifies 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 Argument 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: String Argument Required Specifies 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 Argument Required Specifies the start time of the event in DateTime format. The input should be given in double- quotes.

  • End Time: String Argument Required Specifies the end time of the event in DateTime format. The input should be given in double-quotes.

  • Timezone: String Argument 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.

Options

  • Categories: String Argument 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


Output

  • Event: Event Variable Specifies the created event as an Event object which can be used to add attendees or modify information.

Last updated