Skip to main content

Window Open Count Per Day

Retrieves the daily count of window openings for a specified app over a given period.

Request
  • Method: GET
  • Endpoint: {{base_url}}/performance/window-open-count-per-day
Query parameters
Name
Type
Description
app_id
string

The app ID you want to query.

days_back
string

The timeframe for which the statistics are fetched.

window_name
string

Query by window name in the application. Use All Windows to retrieve all the windows.

Additional parameters
Name
In
Type
Description
authorization
header
string
Response
200

Window Open Count Per Day

FieldType
rows.sum_sessionsinteger
rows.activity_datestring
rows.updated_atstring
rows.app_idstring
rows.over_one_hourinteger
rows.under_five_minutesinteger
rows.window_namestring
columns.friendly_namestring
columns.typestring
columns.namestring
Security
  • ApiKeyAuth
Request
{{base_url}}/performance/window-open-count-per-day?app_id=%7B%7Bapp_id%7D%7D&days_back=Last%20180%20Days&window_name=All%20Windows
Response
{
  "rows": [
    {
      "sum_sessions": "integer",
      "activity_date": "date",
      "updated_at": "string",
      "app_id": "string",
      "over_one_hour": "integer",
      "under_five_minutes": "integer",
      "window_name": "string"
    }
  ],
  "columns": [
    {
      "friendly_name": "string",
      "type": "string",
      "name": "string"
    }
  ]
}