reminder_view
Creates, updates, deletes, gets or lists a reminder_view resource.
Overview
| Name | reminder_view |
| Type | Resource |
| Id | entra_id.users.reminder_view |
Fields
The following fields are returned by SELECT queries:
- get
| Name | Datatype | Description |
|---|---|---|
changeKey | string | Identifies 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. |
eventEndTime | object | The date, time and time zone that the event ends. (title: dateTimeTimeZone) |
eventId | string | The unique ID of the event. Read only. |
eventLocation | object | The location of the event. (title: location) |
eventStartTime | object | The date, time, and time zone that the event starts. (title: dateTimeTimeZone) |
eventSubject | string | The text of the event's subject line. |
eventWebLink | string | The 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. |
reminderFireTime | object | The date, time, and time zone that the reminder is set to occur. (title: dateTimeTimeZone) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | user_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.
| Name | Datatype | Description |
|---|---|---|
end_date_time | string | Usage: EndDateTime='{EndDateTime}' |
start_date_time | string | Usage: StartDateTime='{StartDateTime}' |
user_id | string | The unique identifier of user |
SELECT examples
- get
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
;