DemandFlow Support Centre

ACCOUNT: Account

ReferenceEntity Reference16/04/2026Updated 16/04/2026
A CRM account representing a sales or commercial relationship with a company.

ACCOUNT: Account

A CRM account representing a sales or commercial relationship with a company.

Default definition. This article describes the default ACCOUNT definition shipped with DemandFlow. Administrators can add, remove, rename, or re-type fields, change which ones are required, and alter the layout from the Definitions screen in Settings. Your tenant's current schema may differ from what is shown here. To read the current definition at any time, GET the DEFINITION object whose id matches ACCOUNT.

Entity properties

PropertyValue
Entity codeACCOUNT
Display nameAccount
PluralAccounts
Level11100
ExtendsCOM. See Entity Extension.

Use cases

ACCOUNT is a CRM/sales overlay of COM. While COM is the canonical company record used across the platform, ACCOUNT captures the sales relationship: who owns the account, what stage it's at, how it was sourced, revenue targets, and engagement history. An ACCOUNT always links back to a COM record via df_extendObject. Multiple overlays can exist for the same COM - e.g. a company could be both an ACCOUNT and a CLIENT simultaneously. Key CRM fields include accountOwner (singleuser), accountStatus, leadSource, annualRevenue, lastContactDate, and nextFollowUp.

Fields

Because this entity extends COM, some fields may actually be stored on the linked base record rather than on this record directly. See Entity Extension.

General: Account Details

FieldTypeRequiredNotes
nametextYesAccount Name.
df_extendObjectreference → COMParent company.
descriptiontext (multi-line)Description.
accountOwnerreference → userAccount Owner.
accountStatusenumStatus. Valid ids: prospect (Prospect), qualified (Qualified), active (Active), nurture (Nurture), churned (Churned), dormant (Dormant).
accountTypeenumAccount Type. Valid ids: newBusiness (New Business), existing (Existing Customer), strategic (Strategic), partner (Partner).

General: Sales Information

FieldTypeRequiredNotes
leadSourceenumLead Source. Valid ids: inbound (Inbound), outbound (Outbound), referral (Referral), event (Event), website (Website), partner (Partner), other (Other).
annualRevenuenumberAnnual Revenue Target.
currencytextCurrency. Placeholder: GBP.
industryreference → INDIndustry.

General: Engagement

FieldTypeRequiredNotes
lastContactDatedateLast Contacted.
nextFollowUpdateNext Follow-up.
engagementScorenumberEngagement Score.
websitetext (URL)Website.

Relationships

  • Lookups: df_extendObject points at a COM record; industry points at a IND record.
  • Extends: this entity extends COM. See Entity Extension.
  • Related lists: PPL (format SUB|ACCOUNT|PPL), DEAL (format SUB|ACCOUNT).
  • Activity: activity timeline panel attached.

Creating a Account via the API

POST /v1/objects
Authorization: Bearer <your-pat>
Content-Type: application/json

{
  "entity":   "ACCOUNT",
  "level":    11100,
  "comboKey": "SUB:<your-sub-id>|ENT:",
  "name": "Account Name",
  "description": "Description",
  "accountStatus": "prospect",
  "accountType": "newBusiness"
}

Listing Accounts records

GET /v1/entities/ACCOUNT/SUB

See also

accountaccountscom

Was this article helpful?

← Back to Knowledge Base