Organization

The `Organization` entity.

Definition

TypeScript
interface Organization {
  id: string;
  name: string;
  handle: string;
  ownerId: string;
  createdAt: string;
  updatedAt: string;
}

Fields

FieldTypeNotes
idstringreadonly required
namestringrequired — Globally unique organization name.
handlestringrequired — Globally unique organization handle.
ownerIdstringrequired — User who owns the organization.
createdAtstringreadonly required — ISO-8601 timestamp of creation.
updatedAtstringreadonly required — ISO-8601 timestamp of the last modification.