Skip to main content

./list/aggregations

Returns a list of all aggregations (statistics) that can be obtained for the data. Examples:

  • Total jobs per job status
  • Total deadlines per month
  • etc.

URL

Retrieve all aggregations:

(GET) ./list/aggregations

 

PARAMETERS

None.

 

 

RESULTS

The method returns an object with these properties:

id

A code for the aggregation. This code is used by the API method to retrieve the aggregation.

Null is the default aggregation. Each list always comes with a default.

To actually run an aggregation, use API method:

./list/aggregations/{id} (post)

string?
namePrint title of aggregation 
descDescriptionobject

 

EXAMPLES

Aggregations:

CODE
[
    {
        "id": null,
        "name": "Job counts per status",
        "desc": "Indicates total jobs per job status"
    },
    {
        "id": "deadline",
        "name": "Total deadlines per month over past one year",
        "desc": "Shows the deadlines falling on a month. Shown for the past 12 months"
    }
]

 

 

 

 

 

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.