ReminderNotifications
Controls reminder rules that trigger alerts based on time or conditions, allowing teams to track deadlines or follow-ups more reliably.
Select
WHERE 句ではAppId カラムが必須です。connector はKintone API を使用してこのカラムによる結果をフィルタリングします。デフォルトでは、connector はクライアント側でconnector 内で他のフィルタを処理します。
例えば、次のクエリはサーバー側で処理されます。
SELECT * FROM ReminderNotifications WHERE AppId = 6 SELECT * FROM ReminderNotifications WHERE AppId = 6 AND Lang = 'en' SELECT * FROM ReminderNotifications WHERE AppId = 6 AND IsPreview = false
Update
ReminderNotifications を更新するには、Notifications を集計として指定します。ReminderNotifications を更新するには、AppId カラムが必須です。
UPDATE ReminderNotifications SET Notifications = '[{"timing":{"code":"Updated_datetime","daysLater":-2,"hoursLater":-5},"filterCond":"Record_number = 14","title":"Reminder: Tomorrow is the deadline.","targets":[{"entity":{"type":"FIELD_ENTITY","code":"Created_by"},"includeSubs":false}]}]' WHERE AppId = 6
Columns
| Name | Type | ReadOnly | References | Description |
| AppId [KEY] | Integer | False |
Identifier of the Kintone app whose reminder-notification settings are being retrieved or updated. | |
| FilterCond | String | False |
Record filter condition expressed in query-string format, defining which records trigger the reminder notification. | |
| Title | String | False |
Subject line used for the reminder notification, corresponding to the Summary field shown in the Kintone interface. | |
| TimingCode [KEY] | String | False |
Field code of the date or datetime field that determines when the reminder notification should be triggered. | |
| TimingDaysLater | Integer | False |
Number of days offset from the value in the timing field, where positive values schedule the reminder after that date and negative values schedule it before that date. | |
| TimingHoursLater | Integer | False |
Number of hours offset from the timing field's datetime value, applied after the day offset defined by TimingDaysLater. | |
| TimingTime | String | False |
Specific time of day when the reminder notification should be sent, returned when the timing field is a date field or when time-based scheduling is configured. | |
| Targets | String | False |
Array of objects listing the users, groups, or departments that receive the reminder notification. | |
| Revision | String | True |
Revision number of the app settings, helping track changes to the reminder-notification configuration. | |
| Timezone | String | False |
Time zone used to determine when reminder notifications are sent, reflecting the Reminder Time Zone setting and returning null when no reminder configuration exists. |
Pseudo-Columns
SELECT ステートメントのWHERE 句では、疑似カラムフィールドを使用して、データソースから返されるデータを詳細に制御することができます。
| Name | Type | Description |
| Lang | String |
Locale code used to retrieve reminder-notification details in a specific language. |
| IsPreview | Boolean |
Indicates whether to retrieve reminder-notification details from the preview environment ('true') or from the live environment ('false'). The default value is 'true'. |
| Notifications | String |
Value used only when performing an update to supply modified reminder-notification settings. |