Skip to main content

Tenant

The Tenant API lets you retrieve and update your account details.

Base URL

https://app.zentarinetworks.com

Get Tenant

GET /api/tenant

Returns the current tenant's details.

Response

{
"id": "a1b2c3d4-e5f6-...",
"name": "Acme IoT Ltd",
"billingEmail": "billing@acme.example"
}
FieldTypeDescription
idstringTenant ID
namestringTenant display name
billingEmailstringBilling contact email address

Update Tenant Name

PATCH /api/tenant/name

Request Body

{
"name": "New Company Name"
}
FieldConstraints
nameRequired. 2–100 characters.

Response

{ "id": "a1b2c3d4-e5f6-..." }

Update Billing Email

PATCH /api/tenant/billing-email

Request Body

{
"billingEmail": "newbilling@acme.example"
}
FieldConstraints
billingEmailRequired. Must be a valid email address.

Response

{ "id": "a1b2c3d4-e5f6-..." }