App Event Parameter Data

The API request comprises elements that can be combined to query your app events data. All parameters apply to this table:

Sample Request

https://api-metrics.flurry.com/public/v1/data/eventParams/day/app;show=all/event/paramName/paramValue?metrics=count&filters=app|name-in[foo],event|name-in[level_complete]&dateTime=2016-11-07/2016-11-08

App Event Parameter Metrics

Below are metrics that are available for reporting.

Metric

Description

count

number of times specific value was recorded for an event parameter

App Event Parameter Dimensions

Below are dimensions and dimension attributes that are available for reporting.

Dimension

Description

Value

company

Flurry company account

id, name (default)

app

Flurry app

id, name (default), company|id, apiKey, platform|id, platform|name

country

Per country dimension totals

id, name (default), iso

appVersion

App’s version ID, name, company ID, app ID, deleted and filtered. Deleted and filtered are boolean (0 or 1) and reflect current status of an app version based on developer’s action on Flurry developer portal

id, name (default), company|id, app|id, deleted, filtered

language

Language ID and name

id, name (default)

region

Region ID and name

id, name (default)

category

App category ID and name

id, name (default)

event

Available for appEvent table only; Event ID, name, app ID, company ID, deleted and filtered. Deleted and filtered are boolean (0 or 1) and reflect current status of an app event based on developer’s action on Flurry developer portal.

id, name (default) , company|id, app|id, deleted, filtered

paramName

Name of event parameter. Available for eventParams table only; Param ID, name

paramValue

Value of event parameter. Available for eventParams table only; Value ID, name

App Event Parameter Time Grain

  • day

  • week

  • month

  • all

Refer to Analytics API for all the parameters, list of error codes and other general information about this API

Example app event parameter metrics query

For a specific app event, provide event parameter values breakdown for 1 day:

Sample Request

https:// api-metrics.flurry.com/public/v1/data/eventParams/day/app;show=all/event/paramName/paramValue?metrics=count&filters=app|name-in[foo],event|name-in[level_complete]&dateTime=2016-11-07/2016-11-08

Sample Response

{
        "rows": [{
                "dateTime": "2016-11-07 00:00:00.000-07:00",
                "app|name": "foo",
                "event|name": "level_complete",
                "paramName|name": "level",
                "paramValue|name": "1",
                "count": 32
        },{
                "dateTime": "2016-11-07 00:00:00.000-07:00",
                "app|name": "foo",
                "event|name": "login",
                "paramName|name": "level",
                "paramValue|name": "2",
                "count": 15
        }]
}