Note: This release is in preview. Features described here don’t become generally available until the latest general availability date that Salesforce announces for this release. Before then, and where features are noted as beta, pilot, or developer preview, we can’t guarantee general availability within any particular time frame or at all. Make your purchase decisions only on the basis of generally available products and features.

Reminder Update Input

Input representation of a reminder definition to update the reminder based on the ID of the reminder definition.
JSON example
Here’s a sample input of a non-recurring reminder to update the reminder.
1{
2  "id": "17jSB00000000eLYAQ",
3  "name": "FirstReminder",
4  "parentRecordId": "0Kdxx0000004C92CAE",
5  "status": "Draft",
6  "schedule": {
7    "reminderType": "NonRecurring",
8    "firstReminderInterval": 1,
9    "secondReminderInterval": 5,
10    "thirdReminderInterval": 9,
11    "fourthReminderInterval": 13
12  },
13  "reminderChannels": [
14    {
15      "reminderDefinitionChannelId": "17kSB000000Y4dtYAC",
16      "channel": "Email",
17      "templateId": "00Xxx000000k1DvEAI",
18      "sendFrom": "john.doe@example.com",
19      "operationType": "Update"
20    }
21  ],
22  "rule": {
23    "criteriaLogic": "Or",
24    "criteria": [
25      {
26        "operator": "Equals",
27        "field": "Status",
28        "fieldType": "StaticEnum",
29        "value": "Completed"
30      },
31      {
32        "operator": "NotEquals",
33        "field": "Status",
34        "fieldType": "Integer",
35        "value": 7
36      }
37    ]
38  }
39}
Properties
Name Type Description Required or Optional Available Version
id String ID of the reminder definition. Required 60.0