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.
Search Actionable List Member Input
Input representation for searching for actionable list members.
- JSON Example
-
1{ 2 "searchTerm" : "Julia Green", 3 "orderBy" : { 4 "orderByList" : [ 5 { 6 "fieldName" : "Name", 7 "operator" : "ASC", 8 "nulls" : "First" 9 } 10 ] 11 }, 12 "filters" : { 13 "filterList" : [ 14 { 15 "fieldName" : "Name", 16 "operator" : "Like", 17 "value" : "AL" 18 } 19 ] 20 }, 21 "scope":"ASSIGNEE", 22 "requireHeaders" : true, 23 "after": "djE6OQ==" 24} - Properties
-
Name Type Description Required or Optional Available Version after String Pointer to the last record in the previous pagination request. Optional 57.0 filters Filter Input[] List of WHERE clauses for filtering actionable list members. Optional 57.0 orderBy OrderBy Input[] ORDER BY clause for sorting actionable list members. Optional 57.0 requireHeaders Boolean Indicates whether the metadata of the Actionable List Member fields must be provided (true) or not (false). The default value is true. Optional 57.0 scope String Specifies the scope of the API request: - Assignee—API fetches the actionable list members assigned to the logged in user.
- All—API fetches all the actionable list members shared with or belonging to the logged in user.
Optional 57.0 searchTerm String Reference record name for filtering actionable list member records. Optional 57.0