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"
}
| Field | Type | Description |
|---|---|---|
id | string | Tenant ID |
name | string | Tenant display name |
billingEmail | string | Billing contact email address |
Update Tenant Name
PATCH /api/tenant/name
Request Body
{
"name": "New Company Name"
}
| Field | Constraints |
|---|---|
name | Required. 2–100 characters. |
Response
{ "id": "a1b2c3d4-e5f6-..." }
Update Billing Email
PATCH /api/tenant/billing-email
Request Body
{
"billingEmail": "newbilling@acme.example"
}
| Field | Constraints |
|---|---|
billingEmail | Required. Must be a valid email address. |
Response
{ "id": "a1b2c3d4-e5f6-..." }