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_idRequired
string

The app ID you want to query.

days_backRequired
string

The timeframe for which the statistics are fetched.

Allowed values: Last 30 Days, Last 90 Days, Last 180 Days, Last 365 Days
window_nameRequired
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.application_namestring
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": "style",
      "app_id": "string",
      "over_one_hour": "integer",
      "under_five_minutes": "integer",
      "application_name": "string",
      "window_name": "string"
    }
  ],
  "columns": [
    {
      "friendly_name": "string",
      "type": "string",
      "name": "string"
    }
  ]
}