This section covers API and SDK methods related to the tenants.
LiteGraph is an inherently multi-tenant platform, that is, isolation is provided between tenants such that each tenant can enjoy a virtual, isolated experience without concern over data, users, or other assets crossing tenant boundaries. The Tenant
object is the top-level object representing an isolated instance within LiteGraph.
Structure
Tenant objects have the following structure:
{
"GUID": "00000000-0000-0000-0000-000000000000",
"Name": "Default tenant",
"Active": true,
"CreatedUtc": "2025-01-20T02:51:11.325726Z",
"LastUpdateUtc": "2025-01-20T02:51:11.325727Z"
}
Properties
GUID
- A globally unique identifier for the tenant, represented as a UUID string.Name
- The display name of the tenant.Active
- A boolean flag indicating whether the tenant is currently active (true
) or inactive (false
).CreatedUtc
- The date and time (in UTC) when the tenant was initially created.LastUpdateUtc
- The date and time (in UTC) when the tenant object was last updated.