Skip to main content

No tenant

typehttps://docs.frem.sh/reference/api/errors/no-tenant
HTTP status403 Forbidden

What it means

The token authenticated, but it is not bound to an organisation — so there is no organisation whose benches, seats or settings the call could act on.

This normally means a token minted outside an org context.

What to do

Mint a token from within the organisation you mean to act on.

GET /users/me shows a token’s tenant_id. If that is null, this error is expected for every org-scoped endpoint.

Response shape

All fremforge API errors are RFC 9457 problem+json:

{
  "type": "https://docs.frem.sh/reference/api/errors/no-tenant",
  "title": "Forbidden",
  "status": 403,
  "detail": "..."
}

Branch on type, not on title or detail - those are human-readable and may be reworded.