Skip to main content

Documentation Index

Fetch the complete documentation index at: https://quintsecurity.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

The Settings page consolidates all configuration: personal preferences, team management, and API token operations.

Theme

Toggle between dark and light mode. Dark mode is the default and recommended for extended use. The theme preference is stored per-user and persists across sessions and devices. You can also toggle via the command palette (Cmd+K then type “theme”).

Default Views

SettingOptionsDefault
Default time range1h, 6h, 24h, 7d, 30d24h
Landing pageOverview, Sessions, Alerts, FleetOverview
The default time range applies to all dashboard views on load. You can always override it with the global time picker.

Notifications

Configure which events trigger notifications and how they’re delivered.

Alert Notifications

SettingDescriptionDefault
Critical alertsNotify on critical severity alertsOn
High alertsNotify on high severity alertsOn
Medium alertsNotify on medium severity alertsOff
Low alertsNotify on low severity alertsOff

Delivery Methods

MethodDescription
Browser pushDesktop notifications via the browser. Requires permission grant on first enable.
Email digestPeriodic email summary. Options: real-time, hourly, daily, weekly, off.
For most teams, enabling critical + high alerts with daily email digest strikes the right balance between awareness and noise.

Team Management

Admins and owners see the team management section. From here:

Invite Members

Send an invite by entering an email and selecting a role. The invitee receives no email from Quint — they just need to sign up (or log in if they already have an account), and the membership is auto-claimed.

Member List

View all members and pending invites:
  • Name and email
  • Role — with edit button for admins+ (respecting role assignment rules)
  • Status — active or pending
  • Joined date — or invite date for pending members
  • Actions — remove member, change role

Role Changes

Click the role badge next to any member to change it. You can only assign roles up to your own level. See RBAC for details.
Removing a member revokes all their personal tokens immediately. Make sure any automations using their personal tokens are migrated to service tokens first.

API Tokens

Create and manage tokens for programmatic API access. This section mirrors the functionality of the Token API.

Create Token

  1. Click “Create Token”
  2. Enter a name (e.g., “CI Pipeline - Staging”)
  3. Select the token type: personal, service, or deploy
  4. Choose scopes: read, ingest, manage, admin, or all
  5. Click “Create”
  6. Copy the token immediately — it won’t be shown again

Token List

All org tokens displayed with:
ColumnDescription
NameHuman-readable label
TypePersonal, service, or deploy
ScopesGranted permissions
Created byWho created the token
Last usedTimestamp of most recent use
CreatedWhen the token was created
ActionsRevoke button

Revoke Tokens

Click the revoke button on any token. Revocation is immediate and irreversible. The token stops working on the next API call.
Stale tokens (unused for 90+ days) are highlighted in the list. Regularly audit and revoke tokens you no longer need.

Preferences API

All settings on this page are also available via the API:
  • GET /v1/preferences — retrieve current preferences
  • PUT /v1/preferences — update preferences (JSONB merge)
See the Auth API Reference for full details and examples.