When this happens
A JWT-authenticated user (i.e. the dashboard, or a tool reusing dashboard JWTs) has not yet completed Auth0 email verification. The API requires verified email before allowing protected operations. API key authentication is not affected — keys belong to a tenant, not a user, so there is no email to verify.Example response
How to fix
- Open the verification email Auth0 sent at sign-up. Click the link.
- If you cannot find it, sign in to
agnes.lasscyber.com— the gate page surfaces a Resend email button. - After verifying, sign out and back in to refresh your JWT.
SDK behaviour
This is rare in SDK code paths — SDKs typically authenticate with API
keys, not JWTs. If you see it from an SDK, you are either using a
JWT-based extension or a custom integration that mints JWTs.
Related
forbidden— the parent generic 403 case.- Authentication — API keys vs JWTs.