Get Events in Calendar

Retrieve all the events that are in the specified entity's calendar.

📘

Note: This operation is part of the Outlook Book (BDK). To use this book, you need to first learn it in your agent.

Note: This operation requires the following permissions on the application: Calendars.ReadWrite

Input Concepts

ConceptDescriptionTypeRequired
entityThe user's or group's calendar that owns the eventoffice group or office userYes
eventThe event that will be updatedoutlook eventYes
textThe content of the bodytextYes

Examples

Update the body of the specified user event

get users from office365 whose mail is "john@acme.org"
use the first entity as john
get john's events from outlook
use the first event as my event
set my event's body to "hello world"

Update the body of the specified group event

get groups from office365 whose mail is "group@acme.org"
get the first group
get the above's events from outlook
get the first event
set the above's body to "hello world"