Output Summary Report

Please note that in our windows client we filter out an output that is associated with a reader in our reports. This is the same for the input report. We filter out any item associated with a reader as the objects are not shown on anywhere in the client except for on the reader itself.

Example in C#

var currentInstance  = await client.GetCurrentInstanceAsync();
var page = 0;
(await client.SearchAsync(currentInstance  , "type:MercuryOutput", page, int.MaxValue)).Where(x => !x.ObjectLinks.Any(y => y.Relation == "Reader"));

Example in CURL

curl -X GET \
  'https://keepapi.feenicshosting.com/api/f/INSTANCE_KEY_HERE?q=type%3AMercuryOutput&page=0&pageSize=2147483647&includeChildFolders=False&spanScope=False' \
  -H 'Accept: */*' \
  -H 'Authorization: Bearer TOKEN_GOES_HERE'  \
  -H 'Connection: keep-alive' \
  -H 'Host: keepapi.feenicshosting.com' \
  -H 'accept-encoding: gzip, deflate' \
  -H 'cache-control: no-cache'