Data Providers
...
MS Graph
Graph Calendar

Get Event Item

7min

Scenario

Get the details of an event item in a user's calendar from Microsoft Graph using a GET REST function and showing it in a default

 using an expander, entity-field, and list component.

Resource links:

Required OAuth scope (least to most privilege):

Calendars.Read Calendars.ReadWrite

Related Sample

This example uses Get Calendar List and Get Event List to provide the calendar id and event id input to the view-calendar-event-details

.

Calendar event
Calendar event


Examples and code snippets



General

index.jigx


Functions

We will use forRowsWithValues in the get-calendar-event-details function to update only one record in the calendarEvents table when called from onRefresh on the view-calendar-event-details

. If you dont specify forRowsWithValues the entire table is wiped by the REST call and only the result is inserted. See REST Overview for more information on using forRowsWithValues with REST calls.

MS Graph Event Item function in GitHub.

get-calendar-events-details.jigx


Jigs

MS Graph Calendar Events

 in GitHub.

view-calendar-event-details


See Also