App Window Open Duration Distribution
Retrieves the distribution of durations for which application windows were open within a specified time frame.
- Method: GET
- Endpoint:
{{base_url}}/performance/app-window-open-duration-distribution
Name
Type
Description
app_idRequiredstring
The app ID you want to query.
days_backRequiredstring
The timeframe for which the statistics are fetched.
Allowed values:
Last 30 Days, Last 90 Days, Last 180 Days, Last 365 Dayswindow_nameRequiredstring
Query by window name in the application. Use All Windows to retrieve all the windows.
Name
In
Type
Description
x-api-tokenheader
N/A
200
App Window Open Duration Distribution
| Field | Type |
|---|---|
rows.avg_windowed_session_length | number |
rows.days_back | string |
rows.sessions_percent_of_total | number |
rows.segmentized_total_sessions | integer |
rows.segmentized_total_duration | integer |
rows.updated_at | string |
rows.windowed_sessions | integer |
rows.duration_percent_of_total | number |
rows.segment | string |
rows.window_name | string |
rows.windowed_duration | integer |
columns.friendly_name | string |
columns.type | string |
columns.name | string |
- ApiKeyAuth
Request
{{base_url}}/performance/app-window-open-duration-distribution?app_id=%7Bapp_id%7D&days_back=Last%2030%20Days&window_name=%7Bwindow_name%7DResponse
{
"rows": [
{
"avg_windowed_session_length": "number",
"days_back": "string",
"sessions_percent_of_total": "number",
"segmentized_total_sessions": "integer",
"segmentized_total_duration": "integer",
"updated_at": "style",
"windowed_sessions": "integer",
"duration_percent_of_total": "number",
"segment": "string",
"window_name": "string",
"windowed_duration": "integer"
}
],
"columns": [
{
"friendly_name": "string",
"type": "string",
"name": "string"
}
]
}