No Authentication (none)
Use this auth mode only for intentionally open routes where caller identity is not required.
What this method does
- Profile auth check is skipped, but profile-level access controls still apply.
X-Client-IDandX-Profile-IDare still used for profile/policy context.
When to use
- Public metadata/health/info routes
- Controlled internal routes behind trusted network boundaries
- Temporary transition phases with strict policy controls
How to configure safely
- Set auth type to
noneon a restricted profile. - Limit route scope to minimum required endpoints.
- Enforce method and IP restrictions.
- Apply strict rate and quota policies.
Verify
403: access/profile/IP denial405: method denied by profile429: limits
401 is generally not expected for none auth paths unless another auth layer is in front.
Troubleshoot
- Unexpected anonymous access: check profile/collection bindings.
- Unexpected
403: check IP/method restrictions and policy scope. - Unexpected
429: tune limits for intended public traffic pattern.