Create Unfinished Ticket
Create a draft ticket for later completion.
POST /v1/minecraft/tickets/unfinished
Create a draft (unfinished) ticket that can be completed later. This is useful when a player begins creating a ticket in-game but does not finish the process, allowing them to resume later.
Authentication
Requires the X-API-Key header with your server's API key.
X-API-Key: your-api-key-hereRequest
Headers
| Header | Type | Required | Description |
|---|---|---|---|
X-API-Key | string | Yes | Your server's API key. |
Content-Type | string | Yes | Must be application/json. |
Body
| Field | Type | Required | Description |
|---|---|---|---|
creatorUuid | string | Yes | The UUID of the player creating the ticket. |
creatorName | string | No | The username of the player creating the ticket. |
type | string | No | The ticket type. One of: player, chat, staff, bug, support, appeal. |
subject | string | No | A brief subject line for the ticket. |
description | string | No | A detailed description of the issue. |
reportedPlayerUuid | string | No | The UUID of the reported player. |
reportedPlayerName | string | No | The username of the reported player. |
chatMessages | string[] | No | Array of JSON-encoded chat message objects. |
tags | string[] | No | Array of tags to categorize the ticket. |
priority | string | No | The ticket priority. One of: low, normal, high. |
{
"creatorUuid": "550e8400-e29b-41d4-a716-446655440000",
"creatorName": "Notch",
"type": "bug",
"subject": "Redstone not working"
}Response
200 OK
{
"success": true,
"ticketId": "ticket_draft_abc123",
"message": "Draft ticket created successfully."
}Error Responses
| Status Code | Description |
|---|---|
400 | Invalid request body. Missing creator UUID or invalid field values. |
401 | Missing or invalid API key. |
429 | Rate limit exceeded. |
500 | Internal server error. |