Acknowledge Punishment Mark a punishment as acknowledged and started on the server.
Mark a punishment as acknowledged by the server, indicating that the punishment has been received and enforcement has begun. This is typically called by the Minecraft plugin after successfully applying a punishment to a player.
Requires the X-API-Key header with your server's API key.
Header Type Required Description X-API-Keystring Yes Your server's API key. Content-Typestring Yes Must be application/json.
Field Type Required Description punishmentIdstring Yes The ID of the punishment to acknowledge. playerUuidstring Yes The UUID of the punished player. executedAtstring No ISO 8601 timestamp of when the punishment was executed on the server. successboolean Yes Whether the punishment was successfully applied. errorMessagestring No Error details if the punishment failed to apply.
{
"punishmentId" : "6651a2f8e4b0c1d2e3f4a5b6" ,
"playerUuid" : "069a79f4-44e9-4726-a5be-fca90e38aaf5" ,
"executedAt" : "2025-01-15T12:00:00Z" ,
"success" : true
}
{
"message" : "Punishment acknowledged successfully."
}
Field Type Description messagestring A human-readable success message.
Status Code Description 400Invalid request body or missing required fields. 401Missing or invalid API key. 404Punishment not found.