MsGraph_EventSearchByInterval

Description

This task returns the list of events within a time frame of a given calendar.

Note:

For the activity to work, the reference application in the Azure Portal must have the following API permissions. This activity allows only APPLICATION type permissions (it cannot work with "DELEGATE" ones).
Required permissions: Calendars.Read
Check this page for more information on Azure app API permissions.

Auth

AuthString InArgument<String> REQUIRED

The authorization string to authenticate in MicrosoftGraph service.

It is possible to obtain it using the activity MsGraph_Login. Look at its dedicated page for more details.

Calendar

CalendarId InArgument<String>

The id of the calendar where to search for events.


Output

Result OutArgument<List<MsEvent>> REQUIRED

The list of events found in the time interval.


Settings

Timeout InArgument<TimeSpan>

The maximum time the activity might take to be executed. If it takes longer, an exception will be thrown.


Time interval

MaxDate InArgument<DateTime> REQUIRED

The maximum date of the interval.

MinDate InArgument<DateTime> REQUIRED

The minimum date of the interval.


User

UserId InArgument<String>

The id of the user's Microsoft account on whose behalf to perform the activity.

It can be found in the result fields of certain activities such as, for example, the owner of a file returned by the OneDrive_ItemGet activity.

UserName InArgument<String>

The email address of the user's Microsoft account on whose behalf to perform the activity.

In the case of the OneDrive activities, it will be the user who owns the drive on which you want to work, in the case of those of the calendars it will have to be their owner while in the case of events it will have to be their organizer user.