Documentation

Learn TicketsX faster

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

Resend a Panel

POST/<guild_id>/api/panels/<panel_id>/resend

Delete the panel’s current Discord message and post a fresh one with the latest configuration (including rebuilt buttons or dropdowns). Requires the `manage_panels` permission (off by default).

Resending is rate limited to 4 per 10 minutes per token because it deletes and reposts messages. A disabled panel is not reposted; its message_id becomes null.

Example request
curl -X POST \
  -H "Authorization: Bearer <API_TOKEN>" \
  https://api.ticketsx.xyz/<guild_id>/api/panels/<panel_id>/resend
Example response
{
  "message": "Panel resent",
  "message_id": "1234567890123456789"
}