Skip to main content

Organization

Fields

Field NameTypeDisplay Name
OrganizationIdInt32Organization id
AddressLineStringAddress line
AddressLine2StringAddress line 2
CityNameStringCity name
CompanyNameStringCompany name
CountryCodeStringCountry code
CreatedDateTimeCreated
CreatedByStringCreated by
FaxNumberStringFax number
IsDeletedBooleanIs deleted
LastModifiedDateTimeLast modified
LastModifiedByStringLast modified by
PhoneNumberStringPhone number
PostalCodeStringPostal code
StateCodeStringState code
UniqueIdGuidUnique identifier
SlugStringURL-friendly slug for Public API routes
CustomValuesDictionaryCustom key-value pairs (jsonb)

Slug

The Slug field provides a human-readable, URL-friendly identifier for organizations. It is used in Public API URLs as an alternative to the UniqueId (GUID).

Generation rules (via SlugGenerator):

  • Lowercased, trimmed
  • Non-alphanumeric characters removed
  • Whitespace replaced with hyphens
  • Consecutive hyphens collapsed
  • Leading/trailing hyphens stripped
  • Truncated to max length if needed; a numeric suffix is appended for uniqueness

Public API resolution: The PublicApiOrganizationResolver accepts either a GUID or a slug string to resolve an organization. Results are cached for 1 hour (sliding expiration).