AggregateAsJsonAsync

Returns ()

Combine the specified Data into JSON

For a guide on how to use aggregation please look at: Using Aggregates

Name Description
folder
collectionName
operations
queryTimeout
jsonStrict
includeGlobal

Aggregate As Json Async

Example in C#

// Returns: IEnumerable<String>
var item = await client.AggregateAsJsonAsync(FolderInfo folder, String collectionName, BsonDocument operations, Int32 queryTimeout, Boolean jsonStrict, Boolean includeGlobal);

Example in CURL



           #This has a very simple query
           curl -X POST \
               'https://keepapi.feenicshosting.com/api/f/INSTANCE.KEY/aggregate/ControllerInfo?queryTimeout=600&jsonStrict=False' \
               -H 'Authorization: Bearer TOKEN_GOES_HERE'
               -H 'Content-Type: application/json' \
               -d '["{ }"]'