Create Event
Overview
The Create Event activity calls the Microsoft Graph CreateEvent API to create a new event object (Event) in your specified team (TeamId).
After creating your new event, the activity outputs the identifier (EventId) as a String that you can use as an input variable in subsequent activities (e.g., Delete Event, ).
How It Works
The following steps and message sequence diagram is an example of how the activity works from design time (i.e., the activity dependencies and input/output properties) to run time.
- Complete the Setup steps.
- Add the Microsoft Teams Scope activity to your project.
- Add an activity or run an external process that outputs a
Team.Idvalue (e.g., Get Teams). - Add the Create Event activity inside the Microsoft Teams Scope activity.
- Enter values for the Input properties, including a new
Eventvariable. - Create and enter a
Stringvariable for your Output property. - Run the activity.
-
Your input property values are sent to the CreateEvent API.
-
The API returns the event id
Stringvalue to your output property variable.
-
Properties
The values for the following properties are specified when adding this activity to your project in UiPath Studio.
Common
DisplayName
The display name of the activity.
| Attributes | Details |
|---|---|
| Type | String |
| Required | Yes |
| Default value | Create Event |
| Allowed values | Enter a String or String variable. |
| Notes | N/A |
Input
Event
The Event object that represents your new event.
| Attributes | Details |
|---|---|
| Type | Event |
| Required | Yes |
| Default value | Empty |
| Allowed values | Enter a Event variable. |
| Notes | Because you're creating a new event, the Event object does not yet exist. To create the Event object variable that represents your new event, enter the following as your variable Default value: new Microsoft.Graph.Event(). The variable you create for this property can be used as an input variable in subsequent activities (e.g., Delete Event,). |
TeamId
The Id of the Team object that you want to create the event in.
| Attributes | Details |
|---|---|
| Type | String |
| Required | Yes |
| Default value | Empty |
| Allowed values | Enter a String or String variable. |
| Notes | To get the Team.Id value, use an external process or activity that includes the Team.Id value in its output (e.g., Get Teams or external API call) |
Misc
Private
If selected, the values of variables and arguments are no longer logged at Verbose level.
| Attributes | Details |
|---|---|
| Type | Checkbox |
| Required | No |
| Default value | Not Selected |
| Allowed values | Selected or Not Selected |
| Notes | N/A |
Output
EventId
The identifier assigned to your new Event object.
| Attributes | Details |
|---|---|
| Type | String |
| Required | No (required if you plan to use the output data in subsequent activities) |
| Default value | Empty |
| Allowed values | Enter a String variable. |
| Notes | The variable you create for this property can be used as an input variable in subsequent activities (e.g., Delete Event,). |