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.

Internal Record Alerts Bulk Actions (POST)

Snooze bulk internal record alerts for a specified time period or dismiss them.

You cannot peform multiple actions on a single record alert ID.

Note

Resource
1/recordalerts/ids/actions
Resource Examples
1https://yourInstance.salesforce.com/services/data/vXX.X/recordalerts
2/ids/actions
Available version
55.0
Requires Chatter
No
HTTP methods
POST
Request body for POST
Root XML tag
RecordAlertBulkActionInputRepresentation
JSON example
1{
2  "actions": [
3    {
4      "recordAlertId": "0qZRO00000000B1",
5      "actionParameters": [
6        {
7          "name": "snoozeUntilDate",
8          "value": "2022-03-08T02:16:35.477Z"
9        }
10      ],
11      "actionName": "snooze"
12    },
13    {
14      "recordAlertId": "0qZRO00000000B2",
15      "actionParameters": [],
16      "actionName": "dismiss"
17    },
18    {
19      "recordAlertId": "0qZRO00000000B3",
20      "actionParameters": [
21        {
22          "name": "snoozeUntilDate",
23          "value": "2022-03-08T02:16:35.477Z"
24        }
25      ],
26      "actionName": "snooze"
27    }
28  ]
29}
Properties
Name Type Description Required or Optional Available Version
actions Record Alert Action Input[] Representation of the record alert actions. Required 55.0
Response body for POST
Record Alert Action Collection Map