Skip to main content

Organization

The Organization object represents a company or business account within the platform. Organizations contain service configurations, users, billing, and all business-specific data.

Schema: OrganizationSchema Source: src/core/account/organization.schema.ts


Attributes​

AttributeTypeRequiredDefaultDescription
idstring——Unique identifier for the organization
companyNamestringYes—Organization's legal company name. Minimum 2 characters
businessVerticalIdenum | nullNonullIndustry classification. See Business Verticals
metadataobjectNo—Custom key-value metadata for organization-specific data
serviceStatusenumNoACTIVECurrent service status. One of ACTIVE, SUSPENDED, or INACTIVE.
lastServiceStatusChangednumber | nullNonullUnix timestamp of last status change
serviceStatusHistoryarrayNonullComplete history of status changes. See OrganizationServiceStatusRecord
platformEmailstring | nullNonullOrganization's platform contact email
createdAtnumber——Unix timestamp when created
updatedAtnumber——Unix timestamp when last updated

OrganizationServiceStatusRecord​

Tracks all status changes for an organization over time.

AttributeTypeRequiredDefaultDescription
idstring——Unique identifier for the status record
statusenumYes—Status at the time of this record. One of ACTIVE, SUSPENDED, or INACTIVE.
previousStatusenum | nullYes—Status before this change. One of ACTIVE, SUSPENDED, or INACTIVE.
suspensionTypeenum | nullYes—Type of suspension if status is SUSPENDED. One of QUOTA_EXCEEDED, PAYMENT_FAILED, POLICY_VIOLATION, or MANUAL.
timestampnumberYes—Unix timestamp when status changed
reasonstringYes—Explanation for the status change
changedBystringYes—User ID who initiated the change
isCurrentbooleanNotrueWhether this is the current active record

Example​

{
"id": "org_abc123",
"companyName": "Acme Corporation",
"businessVerticalId": "technology",
"serviceStatus": "ACTIVE",
"platformEmail": "admin@acme.com",
"metadata": {
"industry": "SaaS",
"employeeCount": 150
},
"createdAt": 1709856000000,
"updatedAt": 1709856000000
}