Skip to content

Commit

Permalink
Merged PR 10140: Added text to clarify 30 days of health data limitation
Browse files Browse the repository at this point in the history
Updates
  • Loading branch information
mcleanbyron committed Jul 27, 2018
1 parent 6716dc6 commit 576eb1c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ ms.localizationpriority: medium

# Get error reporting data for your desktop application

Use this method in the Microsoft Store analytics API to get aggregate error reporting data for a desktop application that you have added to the [Windows Desktop Application program](https://msdn.microsoft.com/library/windows/desktop/mt826504). This information is also available in the [Health report](https://msdn.microsoft.com/library/windows/desktop/mt826504) for desktop applications in the Windows Dev Center dashboard.
Use this method in the Microsoft Store analytics API to get aggregate error reporting data for a desktop application that you have added to the [Windows Desktop Application program](https://msdn.microsoft.com/library/windows/desktop/mt826504). This method can only retrieve errors that occurred in the last 30 days. This information is also available in the [Health report](https://msdn.microsoft.com/library/windows/desktop/mt826504) for desktop applications in the Windows Dev Center dashboard.

## Prerequisites

Expand Down Expand Up @@ -44,7 +44,7 @@ To use this method, you need to first do the following:
| Parameter | Type | Description | Required
|---------------|--------|---------------|------|
| applicationId | string | The product ID of the desktop application for which you want to retrieve error reporting data. To get the product ID of a desktop application, open any [Dev Center analytics report for your desktop application](https://msdn.microsoft.com/library/windows/desktop/mt826504) (such as the **Health report**) and retrieve the product ID from the URL. | Yes |
| startDate | date | The start date in the date range of error reporting data to retrieve, in the format ```mm/dd/yyyy```. The default is the current date. | No |
| startDate | date | The start date in the date range of error reporting data to retrieve, in the format ```mm/dd/yyyy```. The default is the current date.<p/><p/>**Note:**&nbsp;&nbsp;This method can only retrieve errors that occurred in the last 30 days. | No |
| endDate | date | The end date in the date range of error reporting data to retrieve, in the format ```mm/dd/yyyy```. The default is the current date. | No |
| top | int | The number of rows of data to return in the request. The maximum value and the default value if not specified is 10000. If there are more rows in the query, the response body includes a next link that you can use to request the next page of data. | No |
| skip | int | The number of rows to skip in the query. Use this parameter to page through large data sets. For example, top=10000 and skip=0 retrieves the first 10000 rows of data, top=10000 and skip=10000 retrieves the next 10000 rows of data, and so on. | No |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ To use this method, you need to first do the following:
|---------------|--------|---------------|------|
| applicationId | string | The Store ID of the app for which you want to retrieve detailed error data. The Store ID is available on the [App identity page](../publish/view-app-identity-details.md) of the Dev Center dashboard. An example Store ID is 9WZDNCRFJ3Q8. | Yes |
| failureHash | string | The unique ID of the error for which you want to get detailed info. To get this value for the error you are interested in, use the [get error reporting data](get-error-reporting-data.md) method and use the **failureHash** value in the response body of that method. | Yes |
| startDate | date | The start date in the date range of detailed error data to retrieve. The default is 30 days before the current date. | No |
| startDate | date | The start date in the date range of detailed error data to retrieve. The default is 30 days before the current date.<p/><p/>**Note:**&nbsp;&nbsp;This method can only retrieve details for errors that occurred in the last 30 days. | No |
| endDate | date | The end date in the date range of detailed error data to retrieve. The default is the current date. | No |
| top | int | The number of rows of data to return in the request. The maximum value and the default value if not specified is 10000. If there are more rows in the query, the response body includes a next link that you can use to request the next page of data. | No |
| skip | int | The number of rows to skip in the query. Use this parameter to page through large data sets. For example, top=10 and skip=0 retrieves the first 10 rows of data, top=10 and skip=10 retrieves the next 10 rows of data, and so on. | No |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ To use this method, you need to first do the following:
|---------------|--------|---------------|------|
| applicationId | string | The product ID of the desktop application for which you want to retrieve error details. To get the product ID of a desktop application, open any [Dev Center analytics report for your desktop application](https://msdn.microsoft.com/library/windows/desktop/mt826504) (such as the **Health report**) and retrieve the product ID from the URL. | Yes |
| failureHash | string | The unique ID of the error for which you want to get detailed info. To get this value for the error you are interested in, use the [get error reporting data](get-error-reporting-data.md) method and use the **failureHash** value in the response body of that method. | Yes |
| startDate | date | The start date in the date range of detailed error data to retrieve. The default is 30 days before the current date. | No |
| startDate | date | The start date in the date range of detailed error data to retrieve. The default is 30 days before the current date.<p/><p/>**Note:**&nbsp;&nbsp;This method can only retrieve details for errors that occurred in the last 30 days. | No |
| endDate | date | The end date in the date range of detailed error data to retrieve. The default is the current date. | No |
| top | int | The number of rows of data to return in the request. The maximum value and the default value if not specified is 10000. If there are more rows in the query, the response body includes a next link that you can use to request the next page of data. | No |
| skip | int | The number of rows to skip in the query. Use this parameter to page through large data sets. For example, top=10 and skip=0 retrieves the first 10 rows of data, top=10 and skip=10 retrieves the next 10 rows of data, and so on. | No |
Expand Down
4 changes: 2 additions & 2 deletions windows-apps-src/monetize/get-error-reporting-data.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ ms.localizationpriority: medium

# Get error reporting data for your app

Use this method in the Microsoft Store analytics API to get aggregate error reporting data for your app in JSON format for a given date range and other optional filters. This information is also available in the **Failures** section of the [Health report](../publish/health-report.md) in the Windows Dev Center dashboard.
Use this method in the Microsoft Store analytics API to get aggregate error reporting data for your app in JSON format for a given date range and other optional filters. This method can only retrieve errors that occurred in the last 30 days. This information is also available in the **Failures** section of the [Health report](../publish/health-report.md) in the Windows Dev Center dashboard.

You can retrieve additional error information by using the [get error details](get-details-for-an-error-in-your-app.md), [get stack trace](get-the-stack-trace-for-an-error-in-your-app.md), and [download CAB file](download-the-cab-file-for-an-error-in-your-app.md) methods.

Expand Down Expand Up @@ -48,7 +48,7 @@ To use this method, you need to first do the following:
| Parameter | Type | Description | Required
|---------------|--------|---------------|------|
| applicationId | string | The Store ID of the app for which you want to retrieve error reporting data. The Store ID is available on the [App identity page](../publish/view-app-identity-details.md) of the Dev Center dashboard. An example Store ID is 9WZDNCRFJ3Q8. | Yes |
| startDate | date | The start date in the date range of error reporting data to retrieve. The default is the current date. If *aggregationLevel* is **day**, **week**, or **month**, this parameter should specify a date in the format ```mm/dd/yyyy```. If *aggregationLevel* is **hour**, this parameter can specify a date in the format ```mm/dd/yyyy``` or a date and time in the format ```yyyy-mm-dd hh:mm:ss```. | No |
| startDate | date | The start date in the date range of error reporting data to retrieve. The default is the current date. If *aggregationLevel* is **day**, **week**, or **month**, this parameter should specify a date in the format ```mm/dd/yyyy```. If *aggregationLevel* is **hour**, this parameter can specify a date in the format ```mm/dd/yyyy``` or a date and time in the format ```yyyy-mm-dd hh:mm:ss```.<p/><p/>**Note:**&nbsp;&nbsp;This method can only retrieve errors that occurred in the last 30 days. | No |
| endDate | date | The end date in the date range of error reporting data to retrieve. The default is the current date. If *aggregationLevel* is **day**, **week**, or **month**, this parameter should specify a date in the format ```mm/dd/yyyy```. If *aggregationLevel* is **hour**, this parameter can specify a date in the format ```mm/dd/yyyy``` or a date and time in the format ```yyyy-mm-dd hh:mm:ss```. | No |
| top | int | The number of rows of data to return in the request. The maximum value and the default value if not specified is 10000. If there are more rows in the query, the response body includes a next link that you can use to request the next page of data. | No |
| skip | int | The number of rows to skip in the query. Use this parameter to page through large data sets. For example, top=10000 and skip=0 retrieves the first 10000 rows of data, top=10000 and skip=10000 retrieves the next 10000 rows of data, and so on. | No |
Expand Down

0 comments on commit 576eb1c

Please sign in to comment.