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 Logical Operation Rule Input

Input representation of the logical rule that’s used to configure a reminder.
JSON example
Here’s a sample of the criteria logic to configure the reminder.
1{
2  "rule": {
3    "criteriaLogic": "And",
4    "criteria": [
5      {
6        "operator": "Equals",
7        "field": "Status",
8        "fieldType": "StaticEnum",
9        "value": "Completed"
10      }
11    ]
12  }
13}
Properties
Name Type Description Required or Optional Available Version
criteria

Reminder Date Criteria Input[]

Reminder Decimal Criteria Input[]

Reminder Integer Criteria Input[]

Reminder Text Criteria Input[]

Reminder Boolean Criteria Input[]

Criteria to send the reminder. Required 60.0
criteriaLogic String

Logic type between each criterion within the criteria property. Valid values are:

  • And
  • Or
Required 60.0