DemandFlow Support Centre

LEASE: Lease Agreement

ReferenceEntity Reference16/04/2026Updated 16/04/2026
A lease agreement for tower or site space, tracking terms, fees, and contract documentation.

LEASE: Lease Agreement

A lease agreement for tower or site space, tracking terms, fees, and contract documentation.

Default definition. This article describes the default LEASE 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 LEASE.

Entity properties

PropertyValue
Entity codeLEASE
Display nameLease Agreement
PluralLease Agreements
Level40000

Use cases

LEASE is a transactional entity representing a contractual agreement for the use of tower or site infrastructure. Each lease links to a tower (TOWER entity) and a tenant company (COM entity), with status tracked via LEASESTAT lookup. The General panel captures identification (lease number), parties, and status.

Fields

General

FieldTypeRequiredNotes
leaseNumbertextYesLease Number
towerreference → TOWERYesTower
companyreference → COMYesCompany
statusreference → LEASESTATLease Status

Lease Terms

FieldTypeRequiredNotes
startDatedateYesStart Date
endDatedateYesEnd Date
renewalOptionbooleanRenewal Option
noticePeriodnumberNotice Period (days)

Fees & Rates

FieldTypeRequiredNotes
monthlyFeenumberMonthly Fee
annualEscalationnumberAnnual Escalation Rate (%)

Additional Terms

FieldTypeRequiredNotes
specialTermstext (multi-line)Special Terms
contractFiletext (URL)Contract File Path

Relationships

  • Lookups: tower points at a TOWER record. company points at a COM record. status points at a LEASESTAT record.

Creating a Lease Agreement via the API

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

{
  "entity":   "LEASE",
  "level":    40000,
  "comboKey": "SUB:<your-sub-id>|ENT:",
  "leaseNumber": "Example",
  "tower": "",
  "company": "",
  "startDate": "2026-01-01"
}

Listing Lease Agreements records

# All lease agreements in your tenant
GET /v1/entities/LEASE/SUB

See also

leaseagreementagreementsleasesentity reference

Was this article helpful?

← Back to Knowledge Base