Skip to Content
List Errors
get

Returns a list of errors.

Request path & query params
filters[]
array

Limit the results to rows that match conditions from provided key:value pairs. Must be provided as an array query string parameter.

To exclude rows that match a certain condition, prepend a ! character to the dimension.

Possible filter names are the same as returned by the List Filters endpoint.

Example:

  • filters[]=operating_system:windows&filters[]=!country:US
metric_filters[]
array

Limit the results to rows that match inequality conditions from provided metric comparison clauses. Must be provided as an array query string parameter.

Possible filterable metrics are the same as the set of metric ids, with the exceptions of exits_before_video_start, unique_viewers, video_startup_failure_percentage, view_dropped_percentage, and views.

Example:

  • metric_filters[]=aggregate_startup_time>=1000
timeframe[]
array

Timeframe window to limit results by. Must be provided as an array query string parameter (e.g. timeframe[]=).

Accepted formats are...

  • array of epoch timestamps e.g. timeframe[]=1498867200&timeframe[]=1498953600
  • duration string e.g. timeframe[]=24:hours or timeframe[]=7:days
get
200
/data/v1/errors
Response
(application/json)
{
  "total_row_count": 1,
  "timeframe": [
    1610027061,
    1610113461
  ],
  "data": [
    {
      "percentage": 30,
      "notes": "a helpful note",
      "message": "an error message",
      "last_seen": "2021-01-08T13:42:39Z",
      "id": 1,
      "description": "a description for this error",
      "count": 1,
      "code": 100,
      "player_error_code": "100"
    }
  ]
}