Actionable List Member Search by Using Actionable List ID

Retrieves the actionable list members for the specified actionable list ID.
Resource
/connect/sales-excellence/actionable-list-members/${actionableListId}
Resource Example
https://yourInstance.salesforce.com/services/data/v64.0/connect/sales-excellence/actionable-list-members/${actionableListId}
Available Version
57.0
Requires Chatter
No
HTTP Methods
POST
Request Body for POST
JSON Example
{
   "searchTerm" : "Julia Green",
   "orderBy" : {
       "orderByList" : [
          {
             "fieldName" : "Name",
             "operator" : "ASC",
             "nulls" : "First"
          }
       ]
   },
   "filters" : {
       "filterList" : [
          {
             "fieldName" : "Name",
             "operator" : "Like",
             "value" : "AL"
          }
       ]
   },
   "scope":"ASSIGNEE",
   "requireHeaders" : true,
   "after": "djE6OQ=="
}
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.

Sorting of polymorphic columns of actionable list members isn’t supported.

Note

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.
The default value is All.
Optional 57.0
searchTerm String Reference record name for filtering actionable list member records. Optional 57.0
Response Body for POST
Search Actionable List Members