All endpoints require authentication via Supabase JWT in theDocumentation Index
Fetch the complete documentation index at: https://quintsecurity.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Authorization: Bearer <token> header. Org context is resolved from the JWT’s user membership.
Team Management
Invite Member
Email address of the user to invite.
Role to assign. One of:
owner, admin, analyst, viewer. Cannot exceed your own role level.Membership ID.
Either
pending (invite sent, not yet claimed) or active (user has logged in and claimed the invite).List Members
Returns all members of your organization, including pending invites.Update Member Role
Membership ID of the member to update.
New role. Cannot exceed your own role level.
Remove Member
Membership ID to remove.
Token Operations
Create Token
Human-readable label for the token.
Token type:
personal, service, or deploy.Array of scopes:
read, ingest, manage, admin, *.List Tokens
Returns all tokens for your organization. Raw token values are never included.Revoke Token
Token ID to revoke.
401 Unauthorized.
User Preferences
Get Preferences
Returns the current user’s preferences for the organization.Update Preferences
Performs a JSONB merge — only the fields you send are updated. Omitted fields retain their current values.dark or light.Default time range for dashboards. One of:
1h, 6h, 24h, 7d, 30d.Landing page after login. One of:
overview, sessions, alerts, fleet.Notification preferences object. Merged with existing values.
Error Responses
All endpoints return consistent error shapes:| Status | Code | Meaning |
|---|---|---|
400 | bad_request | Invalid input, missing required fields |
401 | unauthorized | Missing or invalid authentication |
403 | insufficient_permissions | Valid auth but insufficient role level |
404 | not_found | Resource doesn’t exist in your org |
409 | conflict | Operation would violate a constraint (e.g., removing last owner) |
429 | rate_limited | Too many requests, retry after Retry-After header |