Returns ()
Both of the methods displayed search in a specified folder and, if selected, the children folders.
The top method returns all objects that match.
Name | Description |
---|---|
folder | |
query | |
page | |
pageSize | |
includeChildFolders | |
spanScope | |
forTags | |
limit |
Example in C#
// Returns: IEnumerable<BaseInfo>
var baseInfo = await client.SearchAsync(FolderInfo folder, String query, Int32 page, Int32 pageSize, Boolean includeChildFolders, Boolean spanScope, String forTags, Int32 limit);
Example in CURL
#General Search
curl -X GET \
'https://api.us.acresecurity.cloud/api/f/Instance.key?q=YOUR_QUERY&page=0&pageSize=1000&includeChildFolders=False&spanScope=False' \
-H 'Authorization: Bearer TOKEN_GOES_HERE'