modl.gg

Dismiss Report

Dismiss a report.

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

Dismiss a report, indicating that no further action is required. Optionally provide a reason and the name of the staff member who dismissed it.

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
dismissedBystringNoThe name of the staff member dismissing the report.
reasonstringNoThe reason for dismissing the report.
{
  "dismissedBy": "StaffMember",
  "reason": "Insufficient evidence to take action."
}

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