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, "{\"_t\":\"MercuryOutput\"}", page, int.MaxValue)).Where(x => !x.ObjectLinks.Any(y => y.Relation == "Reader"));

Example in CURL

curl -X POST \
  'https://api.us.acresecurity.cloud/api/f/INSTANCE_KEY_HERE/search?page=0&pageSize=20000&includeChildFolders=false&spanScope=false' \
  -H 'Accept: application/json' \
  -H 'Authorization: Bearer TOKEN_GOES_HERE' \
  -H 'Content-Type: application/json' \
  -d '"{\"_t\":\"MercuryOutput\"}"'