Skip to main content

Unique ID Configurations

Unique ID Configurations let you define named auto-incrementing sequences that forms can reference to generate structured, predictable record identifiers — for example INV-0001, TKT-00042, or REQ-2026-001. navigatetopeojectsettings


How It Works

Each configuration defines a counter with an optional prefix and suffix. When a form field is linked to a sequence, the next value is generated automatically on submission by combining:

<prefix><current_value><suffix>

The counter increments by the configured step after each use.


Creating a Unique ID Configuration

  1. Click Create.
  2. Fill in the fields in the modal:
FieldDescription
NameInternal label for this sequence (e.g. invoice_id)
PrefixText prepended to the number (e.g. INV-)
SuffixText appended to the number (e.g. leave blank or -2026)
Current ValueThe starting number for the next generated ID
Increment ByHow much the counter increases after each use (default 1)
  1. Click Save.

Example

SettingValue
PrefixTKT-
Suffix(empty)
Current Value100
Increment By1

First generated ID: TKT-100
Second generated ID: TKT-101


Editing a Configuration

  1. Click the three-dot menu () on a row.
  2. Select Edit.
  3. Update any field and click Save.

Editing the Current Value directly changes the next ID that will be issued. Use this carefully if submissions already exist.


Deleting a Configuration

  1. Click the three-dot menu () on a row.
  2. Select Delete and confirm.

Deleted sequences are deactivated (is_active = false) rather than permanently removed, preserving the history of previously issued IDs.