How to Configure Custom Ticket Numbering (Track IDs)
Customize how ticket IDs appear to your team and customers. Choose between random codes or sequential numbers with a custom prefix and padding.
Overview
Every ticket in Support Genix gets a Track ID — a unique identifier used to reference tickets in conversations, emails, and the portal. You can configure how these IDs are generated.
Two Numbering Systems
1. Random Track IDs (Default)
Random 8-character alphanumeric codes generated using a secure hash.
Example IDs:
a3f8c2d17b4e9f02d1c5a8e3
Pros:
- More secure — IDs can’t be guessed sequentially.
- No information leakage about total ticket count.
Cons:
- Not human-friendly — harder to read aloud or remember.
- No logical order.
2. Sequential Track IDs
Incrementing numbers with an optional prefix and zero-padding.
Example IDs (with prefix “TKT-” and min length 5):
TKT-00001TKT-00002TKT-00003
Example IDs (with prefix “S-” and min length 1):
S-1S-2S-100
Pros:
- Human-friendly — easy to read, dictate, and reference.
- Logical order — you can tell which ticket came first.
- Professional appearance in communications.
Cons:
- Reveals total ticket count (a customer receiving TKT-00005 knows you’ve had 5 tickets).
Configuration
Go to Support Genix > Settings > General (Main settings).
Settings
| Setting | Description | Default |
|---|---|---|
| Use Sequential Track ID | Switch between sequential and random modes | Off (random) |
| Track ID Prefix | Text prepended to sequential IDs | S- |
| Minimum Length | Minimum number of digits (zero-padded) | 1 |
Enable Sequential Numbering
- Toggle Use Sequential Track ID to Yes.
- Set the Track ID Prefix (e.g.,
TKT-,TICKET-,#,SUPPORT-). - Set the Minimum Length (1–10 digits).
- Click Save.
Minimum Length (Zero Padding)
The minimum length controls how many digits appear, padding with leading zeros when necessary:
| Min Length | Ticket #1 | Ticket #100 | Ticket #10000 |
|---|---|---|---|
| 1 | 1 | 100 | 10000 |
| 3 | 001 | 100 | 10000 |
| 5 | 00001 | 00100 | 10000 |
| 7 | 0000001 | 0000100 | 0010000 |
When the actual number exceeds the minimum length, the full number is displayed without truncation.
Where Track IDs Appear
Track IDs are shown in:
- Ticket list — As the primary identifier in the ID column.
- Ticket details — At the top of the ticket view.
- Customer portal — Customers see their ticket Track IDs.
- Email notifications — Referenced in subject lines and bodies.
- Search — You can search tickets by Track ID.
- URLs — Used in ticket direct links.
Important Notes
- Changing modes doesn’t affect existing tickets. Existing tickets keep their current Track IDs. Only new tickets use the new format.
- Uniqueness guaranteed. The system ensures no two tickets share the same Track ID.
- Prefix can be anything. Use letters, numbers, hyphens, or special characters. Common choices:
TKT-,#,CASE-,REQ-. - Sequential IDs start from 1. The counter starts at 1 and increments with each new ticket.
Examples by Industry
E-Commerce Support
- Prefix:
ORD-| Min Length: 6 - Result:
ORD-000001,ORD-000002
IT Helpdesk
- Prefix:
INC-| Min Length: 5 - Result:
INC-00001,INC-00002
SaaS Product
- Prefix:
CASE-| Min Length: 4 - Result:
CASE-0001,CASE-0002
Simple
- Prefix:
#| Min Length: 1 - Result:
#1,#2,#100