Documentation

Learn TicketsX faster

Setup guides, the full command reference, Premium features, and the REST API in one place.

13.10

Get a Panel

GET/<guild_id>/api/panels/<panel_id>

Fetch the full configuration of a single panel: name, ticket mode, panel message (a classic embed or a component layout), button styling, auto-close behaviour, and (for multi panels) the dropdown setup. Requires the `list_panels` permission.

Example request
curl -X GET \
  -H "Authorization: Bearer <API_TOKEN>" \
  https://api.ticketsx.xyz/<guild_id>/api/panels/<panel_id>
Example response
{
  "panel": {
    "PanelId": 1,
    "Type": "single",
    "PanelName": "Support",
    "TicketMode": "channel",
    "BypassAutoClose": false,
    "MessageId": "1234567890123456789",
    "PanelMessage": {
      "PanelChannel": "1098765432101234567",
      "PanelTitle": "Open a ticket!",
      "PanelDescription": "Click the button below to contact staff.",
      "PanelColor": "#5865F2",
      "ButtonColor": "primary",
      "ButtonText": "Open Ticket",
      "ButtonEmoji": "\ud83d\udce9",
      "DisablePanel": false,
      "MessageFormat": "embed",
      "Content": "",
      "Embeds": [
        {
          "Title": "Open a ticket!",
          "Description": "Click the button below to contact staff.",
          "Color": "#5865F2",
          "Fields": [],
          "Timestamp": false
        }
      ],
      "LinkButtons": [],
      "Components": []
    }
  }
}