Get Player Reports Retrieve all reports filed against a specific player.
Retrieve all reports that have been filed against a specific player. Results are limited to a maximum of 50 reports, ordered by the database's default sort.
Requires the X-API-Key header with your server's API key.
X-API-Key: your-api-key-here
Header Type Required Description X-API-Keystring Yes Your server's API key.
Parameter Type Required Description uuidstring Yes The reported player's Minecraft UUID.
{
"status" : 200 ,
"reports" : [
{
"id" : "ticket789" ,
"type" : "REPORT" ,
"reporterName" : "WitnessPlayer" ,
"reporterUuid" : "7b2f9400-e29b-41d4-a716-446655440002" ,
"subject" : "Fly hacking in SkyWars" ,
"status" : "OPEN" ,
"priority" : "HIGH" ,
"createdAt" : "2024-01-14T16:30:00.000Z"
},
{
"id" : "ticket790" ,
"type" : "REPORT" ,
"reporterName" : "AnotherPlayer" ,
"reporterUuid" : "8c3g0500-f30c-52e5-b827-557766551003" ,
"subject" : "Inappropriate language" ,
"status" : "RESOLVED" ,
"priority" : "MEDIUM" ,
"createdAt" : "2024-01-10T12:00:00.000Z"
}
]
}
Field Type Description reportsarray List of reports filed against the player (max 50). reports[].idstring The report/ticket ID. reports[].typestring The ticket type (e.g., REPORT). reports[].reporterNamestring Username of the player who filed the report. reports[].reporterUuidstring UUID of the player who filed the report. reports[].subjectstring The report subject or description. reports[].statusstring Current report status (e.g., OPEN, RESOLVED, CLOSED). reports[].prioritystring Report priority level (e.g., LOW, MEDIUM, HIGH). reports[].createdAtstring ISO 8601 timestamp of when the report was created.
Status Code Description 401Missing or invalid API key. 429Rate limit exceeded. 500Internal server error.