Skip to main content

reminder_view

Creates, updates, deletes, gets or lists a reminder_view resource.

Overview

Namereminder_view
TypeResource
Identra_id.users.reminder_view

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
changeKeystringIdentifies the version of the reminder. Every time the reminder is changed, changeKey changes as well. This allows Exchange to apply changes to the correct version of the object.
eventEndTimeobjectThe date, time and time zone that the event ends. (title: dateTimeTimeZone)
eventIdstringThe unique ID of the event. Read only.
eventLocationobjectThe location of the event. (title: location)
eventStartTimeobjectThe date, time, and time zone that the event starts. (title: dateTimeTimeZone)
eventSubjectstringThe text of the event's subject line.
eventWebLinkstringThe URL to open the event in Outlook on the web.The event opens in the browser if you're logged in to your mailbox via Outlook on the web. You're prompted to log in if you aren't already logged in with the browser.This URL can't be accessed from within an iFrame.
reminderFireTimeobjectThe date, time, and time zone that the reminder is set to occur. (title: dateTimeTimeZone)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectuser_id, start_date_time, end_date_time

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
end_date_timestringUsage: EndDateTime='{EndDateTime}'
start_date_timestringUsage: StartDateTime='{StartDateTime}'
user_idstringThe unique identifier of user

SELECT examples

Success

SELECT
changeKey,
eventEndTime,
eventId,
eventLocation,
eventStartTime,
eventSubject,
eventWebLink,
reminderFireTime
FROM entra_id.users.reminder_view
WHERE user_id = '{{ user_id }}' -- required
AND start_date_time = '{{ start_date_time }}' -- required
AND end_date_time = '{{ end_date_time }}' -- required
;