Claim Ticket Link an unlinked ticket to a player account.
Link an unlinked or unclaimed ticket to a player account. This is used when a ticket was created externally (e.g., via the web panel) and needs to be associated with a Minecraft player who logs in.
Requires the X-API-Key header with your server's API key.
X-API-Key: your-api-key-here
Header Type Required Description X-API-Keystring Yes Your server's API key. Content-Typestring Yes Must be application/json.
Parameter Type Required Description idstring Yes The unique identifier of the ticket to claim.
Field Type Required Description playerUuidstring Yes The Minecraft UUID of the player claiming the ticket. playerNamestring Yes The current username of the player claiming the ticket.
{
"playerUuid" : "550e8400-e29b-41d4-a716-446655440000" ,
"playerName" : "Notch"
}
{
"success" : true ,
"message" : "Ticket claimed successfully."
}
Status Code Description 400Invalid request body. Missing required fields or malformed UUID. 401Missing or invalid API key. 404Ticket not found. 409Ticket has already been claimed by another player. 429Rate limit exceeded. 500Internal server error.