Api / Admin

GET/v1/admin/tenants/:id

Auth: admin — Status: stable

Fetch one tenant. Same shape as a list entry.

Request

Path paramTypeDescription
idintTenant id.
curl -H "Authorization: Bearer adm_…" \
  http://arbiter.example.com/v1/admin/tenants/3

Response

200 OK

The Tenant object — see Data model → Tenant. The plaintext token is not returned (it's only available at creation time).

Failure modes

StatusWhenBody
401Missing / invalid admin bearer.{"error": "..."}
404Id doesn't exist.{"error": "tenant not found"}
503Admin not configured.{"error": "admin not configured"}

See also