DEV_AUTH_BYPASS=true for requests that send no Authorization header.
Human requests
Send an Auth0 access token:/userinfo response.
Machine requests
Machine clients use Auth0 client-credentials tokens and must send explicit tenant context headers:snc-tenant.
Local development
When the backend runs with:Authorization header is present, the backend verifies it normally.
Token contents
The JWT payload includes standard Auth0 fields plus tenant metadata:| Claim | Description |
|---|---|
iss | Auth0 issuer configured for the deployment. |
aud | API audience configured for the deployment. |
sub | User or machine-client subject. |
scope / permissions | Operation scopes; M2M tokens must include the configured required scope when set. |
Namespaced tenant claim | Tenant key used by AgentFlow to select isolated runtime resources. |
gty or sub ending in @clients | Used to identify client-credentials machine tokens. |
See Authentication for Auth0 configuration,
machine-client headers, SDK profiles, and local development auth.

