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.
Actionable List Member Count Resource
Update the member count of an actionable list.
- Resource
-
1/connect/actionable-list-member-count - Available version
- 59.0
- Requires Chatter
- No
- HTTP methods
- POST
- Request body for POST
-
- JSON example
-
1{ 2 "filters": { 3 "conditions": [ 4 { 5 "fieldName": "ObjectName", 6 "operator": "equals", 7 "value": "Account", 8 "index": 1 9 }, 10 { 11 "fieldName": "Name", 12 "operator": "equals", 13 "value": "VIPClients", 14 "index": 2 15 } 16 ], 17 "filterLogic": "1 AND 2", 18 "querySize": 2000 19 } 20} - Properties
-
Specify either an actionableListId or filters, but not both.
Name Type Description Required or Optional Available Version actionableListId String ID of the actionable list to be updated. Required if no filters 59.0 filters Actionable List Update Member Count Filter List Input[] List of filters to identify the actionable lists to be updated. Required if no actionableListId 59.0
- Response body for POST
- Actionable List Update Member Count Output