Documentation
Learn TicketsX faster
Setup guides, the full command reference, Premium features, and the REST API in one place.
List Panels
GET
/<guild_id>/api/panelsList the server’s ticket panels so you can discover the `panel_id` values required by Open a Ticket. Requires the `list_panels` permission.
Example request
curl -X GET \
-H "Authorization: Bearer <API_TOKEN>" \
https://api.ticketsx.xyz/<guild_id>/api/panelsExample response
{
"panels": [
{ "PanelId": 1, "PanelName": "Support", "TicketMode": "channel", "Type": "single" },
{ "PanelId": 2, "PanelName": "Store", "Type": "multi" }
]
}