modl.gg

Resolve Report

Mark a report as resolved.

POST /v1/minecraft/reports/{id}/resolve

Mark a report as resolved, indicating that the issue has been addressed. Optionally link a punishment that was issued as a result of the report.

Authentication

Requires the X-API-Key header with your server's API key.

X-API-Key: your-api-key-here

Request

Headers

HeaderTypeRequiredDescription
X-API-KeystringYesYour server's API key.
Content-TypestringYesMust be application/json.

Path Parameters

ParameterTypeRequiredDescription
idstringYesThe unique identifier of the report.

Body

FieldTypeRequiredDescription
resolvedBystringNoThe name of the staff member resolving the report.
resolutionstringNoA description of how the report was resolved.
punishmentIdstringNoThe ID of a punishment that was issued as a result of this report.
{
  "resolvedBy": "StaffMember",
  "resolution": "Player was banned for fly hacking.",
  "punishmentId": "punish_abc123"
}

Response

200 OK

{
  "success": true
}

Error Responses

Status CodeDescription
400Invalid request body.
401Missing or invalid API key.
404Report not found.
429Rate limit exceeded.
500Internal server error.

On this page