Intry

Tenants & organizations

Admin CRUD for tenants — the B2B org boundary in Intry.

Overview

In Prisma and the admin API, a Tenant is the top-level property-management organization. Product docs may call this an “organization” or “company”; the REST path uses /api/admin/tenants.

Endpoints

MethodPathDescription
GET/api/admin/tenantsList tenants
POST/api/admin/tenantsCreate tenant
GET/api/admin/tenants/:idFetch one
PUT/api/admin/tenants/:idUpdate
DELETE/api/admin/tenants/:idDelete

Important fields

FieldNotes
nameDisplay name
typeBusiness classification string
statusDefaults to active
entitlementsJSON module flags; null = all enabled
stripeCustomerIdOptional Stripe linkage
billingPlan / billingStatusBilling metadata

Relations

A tenant owns properties, users, devices, and aggregated analytics rows. Deleting a tenant is destructive — confirm cascade rules in Prisma before automating.

On this page