API Docs / Schemas / TenantForAdminDto

TenantForAdminDto

Extended tenant DTO for admin endpoints, includes subscription and user details.

Properties

Name Type Description
codestring

The URL-friendly unique identifier for the tenant (used in API paths)

The URL-friendly unique identifier for the tenant (used in API paths)

namestring

The human-readable name of the tenant

The human-readable name of the tenant

createdDatestring

When the tenant was created

When the tenant was created

updatedDatestring

When the tenant was last updated

When the tenant was last updated

accountingConnectionCodeAndNameDto
directDebitConnectionCodeAndNameDto
activeClientCountinteger

Count of clients with Active status

Count of clients with Active status

inactiveClientCountinteger

Count of clients with Inactive status

Count of clients with Inactive status

prospectClientCountinteger

Count of clients with Prospect status

Count of clients with Prospect status

lostProspectClientCountinteger

Count of clients with LostProspect status

Count of clients with LostProspect status

servicesCountinteger

Count of services in the tenant

Count of services in the tenant

workFlowsCountinteger

Count of workflows in the tenant

Count of workflows in the tenant

usersCountinteger

Count of users in the tenant

Count of users in the tenant

subscriptionSubscriptionDto
usersarray of TenantUserDto

The users belonging to this tenant

The users belonging to this tenant

JSON Example

{
  "code": "string",
  "name": "string",
  "createdDate": "2024-01-01T00:00:00Z",
  "updatedDate": "2024-01-01T00:00:00Z",
  "accountingConnection": {
    "code": "string",
    "name": "string"
  }
}