Skip to main content

./list/count

Simply counts total records. Add filters, sort options, pagination and more to http request body.

URL

(POST) ./list/count

 

PARAMETERS

The body may optionally contain a JSON object with these parameters:

 

query

Optional query string using a simple but powerful query language. Example:

CODE
{jobid} > 1000 AND {dtstart} > DateTime(2018, 10, 10)
Optional, string?
filter

An alternative, more structured way of filtering data.

Contains an array of filter criteria.

The exact details are field specific and are explained in the page of the specific API method.

 

Optional, object[]?

 

Example:

CODE
{
	"query": "{jobid} > 1000"
}

 

RESULTS

The method returns a JSON object with the total count:

totalTotal number of filtered accounts, i.e. accounts complying with the "filter".int

 

EXAMPLES

A result:

CODE
{
	"total": 324
}

 

 

 

JavaScript errors detected

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

If this problem persists, please contact our support.