modl.gg

Assign Report

Assign a report to a staff member.

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

Assign an open report to a staff member for review. This helps coordinate moderation efforts by indicating who is responsible for handling a specific 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
assigneestringYesThe name of the staff member to assign the report to.
{
  "assignee": "StaffMember"
}

Response

200 OK

{
  "success": true
}

Error Responses

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

On this page