Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

(POST) ./list/count

 

PARAMETERS

The body is optional and may optionally contain the same layout a JSON object used with querying data.However, the count method only reads the filter and query parameters.with these parameters:

 

query

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

Code Block
{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 Block
{
	"layout": {
		"query": "{jobid} ==> 1000"
	}
}

 

RESULTS

The method returns a JSON object with the total count:

...