List Support Tickets
GET /support/list
Retrieves a list of support tickets for the current user.
connected
Response
Get Ticket Messages
GET /support/messages/:ticket
Retrieves all messages for a specific support ticket.
connected
Path Parameters
The ticket number.
| Status | Message |
|---|---|
error | Missing required parameter: ticket |
error | Ticket not found or no access |
Create Support Ticket
POST /support/create
Creates a new support ticket with an initial message.
connected
Body Parameters
The subject/title of the support ticket.
The initial message/description of the issue.
The topic category (e.g.,
"trading", "payment", "account").The specific concern (e.g.,
"deposit", "withdrawal", "ban").Optional base64-encoded attachment.
| Status | Message |
|---|---|
error | Missing required parameters: subject, description, topic, concern |
error | Invalid attachment |
Post Message to Ticket
POST /support/post
Sends a message to an existing support ticket.
connected
Body Parameters
The message content (max 10,000 characters, HTML tags are stripped).
The ticket number to post to.
Optional base64-encoded attachment.
| Status | Message |
|---|---|
error | Missing required parameters: content, ticket |
error | Cannot send message: ticket is closed |
error | Invalid attachment |
Get Messages List
GET /messages/list
Retrieves a list of recent message conversations for the user.
connected
Response
Admin: List Support Tickets
GET /admin/support/list
Retrieves all active support tickets for admin view.
connected, admin
Response
Admin: Get Ticket Messages
GET /admin/support/messages/:ticket/:user
Retrieves messages for a specific support ticket with admin details.
connected, admin
Path Parameters
The ticket number.
The user’s Steam ID.
Admin: Post Message
POST /admin/support/post
Sends a message to a support ticket as an admin. Triggers a Discord notification.
connected, admin
Body Parameters
The message content (max 200,000 characters).
The ticket number.
The Steam ID of the user the message is for.
Admin: Update Ticket Status
POST /admin/support/status
Updates the status of a support ticket.
connected, admin
Body Parameters
The ticket number.
The new status code.
The Steam ID of the ticket owner.
Admin: Block/Unblock User
POST /admin/support/block
Blocks or unblocks a user from creating support tickets.
connected, admin
Body Parameters
The Steam ID of the user.
1 to block, 0 to unblock.| Status | Message |
|---|---|
error | Missing required parameters: user, status |
error | Invalid status. Status must be 0 (unblocked) or 1 (blocked) |