Add Punishment Note Add a note to an existing punishment record.
Add an internal note to an existing punishment record. Notes are visible only to staff members and are useful for tracking additional context or follow-up information related to a punishment.
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.
Parameter Type Required Description punishmentIdstring Yes The ID of the punishment to add a note to.
Field Type Required Description issuerNamestring Yes The name of the staff member adding the note. notestring Yes The note content to add.
{
"issuerName" : "StaffMember" ,
"note" : "Player submitted an appeal via Discord. Reviewing evidence."
}
Field Type Description successboolean Whether the note was added successfully.
Status Code Description 400Invalid request body or missing required fields. 401Missing or invalid API key. 404Punishment not found.