> ## Documentation Index
> Fetch the complete documentation index at: https://devdocs.xbox.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Daily Abuse Reports History Report

> Overview of the PlayFab Daily Abuse Reports History report, a CSV log of player-submitted reports used to investigate cheating and abusive behavior.

The Daily Abuse Reports history report contains a CSV document with all of the player reports that happened during the specified day.

In the example shown below, a player with ID of  **6079A16A9E4FB67** is reporting a player with ID of **94A248B3B9E628F2** for the reason **Test Report** on 5/14/2017.

<img src="https://mintcdn.com/microsoft-4404708b/MjJ0-cTsb1bpaMcX/images/playfab/data-analytics/learn-data/reports/tutorials/daily-abuse-reports-history-report-table.png?fit=max&auto=format&n=MjJ0-cTsb1bpaMcX&q=85&s=f4d4cd5e73d578948043317c1cb57598" alt="Daily Abuse Reports History Report Table" width="680" height="68" data-path="images/playfab/data-analytics/learn-data/reports/tutorials/daily-abuse-reports-history-report-table.png" />

<Note>
  For GDPR compliance reasons, the Daily Abuse History Reports are only available for the past 30 days. To learn more, visit our [GDPR documentation](/services/playfab/data-analytics/privacy-compliance/playfab-gdpr-deleting-and-exporting-player-data).
</Note>

Using this information, you can then use the reportee ID, to quickly look up the reported player and investigate.

<img src="https://mintcdn.com/microsoft-4404708b/MjJ0-cTsb1bpaMcX/images/playfab/data-analytics/learn-data/reports/tutorials/game-manager-players-player-id-search.png?fit=max&auto=format&n=MjJ0-cTsb1bpaMcX&q=85&s=5ce7087ecb8e362580e41e63fb150001" alt="Game Manager - Players - Player ID Search" width="866" height="468" data-path="images/playfab/data-analytics/learn-data/reports/tutorials/game-manager-players-player-id-search.png" />

## Populating the report

The following API call will produce new entries for this report.

```csharp theme={null}
public void ReportPlayer() {
    PlayFabClientAPI.ReportPlayer( new ReportPlayerClientRequest() {
        ReporteeId = "94A248B3B9E628F2",
        Comment = "I think this person is cheating! Please, check!"
    }, result => {
        // Success
    }, error => Debug.LogError(error.GenerateErrorReport()));
}
```


## Related topics

- [Reports quickstart](/services/playfab/data-analytics/learn-data/reports/quickstart.md)
- [Daily and Monthly Top Spender Report](/services/playfab/data-analytics/learn-data/reports/daily-and-monthly-top-spender-report.md)
- [Daily email report](/services/playfab/data-analytics/learn-data/reports/daily-email-report.md)
- [Daily and Monthly Top Items Report](/services/playfab/data-analytics/learn-data/reports/daily-and-monthly-top-items-report.md)
- [Daily and Monthly CDN Usage Report](/services/playfab/data-analytics/learn-data/reports/daily-and-monthly-cdn-usage-report.md)
