Many BugSplat endpoints support paging, filtering, and grouping data using the common syntax described on this page. Each page will have a different set of column names that are to be used with the filtering and grouping options.
The following URI parameters may be available:
Here's an example:
https://app.bugsplat.com/api/allcrash?database=Fred&filterscount=2&filterdatafield0=appVersion&filtercondition0=EQUAL&filtervalue0=2020.10.23.0&filteroperator1=AND&filterdatafield1=crashTime&filtercondition1=GREATER_THAN&filtervalue1=2020-10-23:20:00:00MST
Let's decompose those uri parameters...
?database=Fred
This selects the 'Fred' database
&filterscount=2
We are defining two filters
&filterdatafield0=appVersion&filtercondition0=EQUAL
First filter on appVersion='2020.10.23.0'
&filtervalue0=2020.10.23.0&filteroperator1=AND&filterdatafield1=crashTime&filtercondition1=GREATER_THAN
Second filter AND crashTime greater than 2020-10-23:20:00:00MST
&filtervalue1=2020-10-23:20:00:00MST