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.
External Storage Search Input
Defines the query and optional filters used to search content stored in an external
storage provider through the Lambda middleware.
- Root XML tag
- <ExternalStorageSearchInput>
- JSON example
-
1{ 2 "searchQuery" : "quarterly revenue report", 3 "contentDocumentIds" : [ "069RM000000ABCDYA0" ], 4 "additionalFilters" : { }, 5 "maxResults" : 25, 6 "searchHandle" : null 7} - Properties
-
Name Type Description Required or Optional Available Version additionalFilters Object Provider-specific filters passed through to the Lambda middleware. Use this to supply filter criteria that the external provider understands. Optional 68.0 contentDocumentIds String[] List of ContentDocument IDs that scopes the search to specific documents. Limited to 1,000 IDs. Optional 68.0 maxResults Integer Maximum number of results to return per page. Must be between 1 and 100. Defaults to 100 when omitted. Optional 68.0 searchHandle String Opaque pagination token from the nextSearchHandle value of a previous response. Pass it to fetch the next page of results. Optional 68.0 searchQuery String Text of the search to run against the external provider. Must contain 1 to 4,096 characters and can't be empty. Required 68.0