ReminderNotifications
kintone の利用可能なリマインダーの条件通知を更新およびクエリします。
Select
WHERE 句ではAppId カラムが必須です。本製品 はKintone API を使用してこのカラムによる結果をフィルタリングします。デフォルトでは、本製品 はクライアント側で本製品 内で他のフィルタを処理します。
例えば、次のクエリはサーバー側で処理されます。
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 |
kintone アプリケーションのアプリID。 | |
FilterCond | String | False |
リマインダーの条件通知を行う条件。クエリ形式で表されます。 | |
Title | String | False |
リマインダーの条件通知で通知される内容。 | |
TimingCode [KEY] | String | False |
通知のタイミングの基準日時となるフィールドのフィールドコード。 | |
TimingDaysLater | Integer | False |
基準日時notifications[].timing.code date/datetime から何日前または何日後に通知するか。基準日時より前に通知する場合は、負の整数が返ります。 | |
TimingHoursLater | Integer | False |
基準日時notifications[].timing.code datetime に timing.daysLater を足した日時から、何時間後または何時間前に通知するか。 | |
TimingTime | String | False |
基準日時にtiming.daysLater を足した日付から、いつ通知するか。このパラメータは、notifications[].timing.code パラメータに日付フィールドを設定しているか、notifications[].timing.code に日時を表すフィールドを指定し「絶対時刻を指定」が設定されている場合に返されます。 | |
Targets | String | False |
リマインダーの通知先の対象の一覧。 | |
Revision | String | True |
アプリの設定のリビジョン番号。 | |
Timezone | String | False |
リマインドする時刻のタイムゾーン。「リマインド時刻のタイムゾーン」ドロップダウンオプションを反映します。リマインダーの条件通知を一度も設定していないアプリでは「null」が返ります。 |
Pseudo-Columns
SELECT ステートメントのWHERE 句では、疑似カラムフィールドを使用して、データソースから返されるタプルを詳細に制御することができます。
Name | Type | Description |
Lang | String |
取得する名称の言語。 |
IsPreview | Boolean |
False に設定することで、運用環境のアプリのReminder Notifications の詳細を取得することができます。デフォルト値はtrue です。 |
Notifications | String |
Update の実行にのみ使用されます。 |