How to Submit a Support Ticket
Support tickets let you ask for help from the app team. This feature is available when Support Tickets are enabled for your instance.
In the app (UI)
- Log in and go to Settings (e.g. profile menu → Settings).
- In the sidebar, click Support Ticket (or Ticket).
- To create a new ticket:
- Click Create new ticket or New ticket.
- Enter a subject (short title).
- Enter a description (your question or issue).
- Optionally attach files if the form allows.
- Submit the ticket.
- You can view your tickets in the same section: open a ticket to see replies from support and add more comments.
Via the API
If your app or admin tools use the API:
- Create ticket:
POST /api/ticketswith subject, description, and optional attachments (see backend docs for exact body). - List my tickets:
GET /api/tickets(with auth; typically returns tickets for the current user). - Get ticket:
GET /api/tickets/{id}. - Add a reply:
POST /api/ticket-commentswithticketIdandtext.
Details: Support Tickets feature.
Next steps
- Support Tickets feature — API and admin workflow
- Tutorials intro