permissions
Get Users In Tenant
List all users in a tenant, with their roles.
The authenticated user must be the tenant owner or have user-management
permission (e.g. Admin role) in the tenant.
## Path Parameters
- **tenant_id** (UUID): The UUID of the tenant (find yours via GET /api/v1/permissions/tenants/me)
## Response
Returns a JSON list of users: [{"id", "email", "roles": [{"id", "name"}]}].
## Error Codes
- **403 Forbidden**: Caller lacks user-management permission in the tenant
GET
Get Users In Tenant
Previous
Get My TenantsList the tenants the authenticated user belongs to.
Use the returned ids as the tenant_id path parameter for the other
/permissions/tenants/... endpoints.
## Response
Returns a JSON list of tenants: [{"id", "name"}].
Next
Get Users In Tenant