DemandFlow Support Centre

ITMAINT: IT Maintenance

ReferenceEntity Reference16/04/2026Updated 16/04/2026
Maintenance record for an IT asset covering scheduled servicing, repairs, upgrades, and inspections with cost and outcome tracking.

ITMAINT: IT Maintenance

Maintenance record for an IT asset covering scheduled servicing, repairs, upgrades, and inspections with cost and outcome tracking.

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

Entity properties

PropertyValue
Entity codeITMAINT
Display nameIT Maintenance
PluralIT Maintenance Records
Level50100

Use cases

ITMAINT tracks individual maintenance events against IT assets via comboKeyEntity relationship to ITASSET. Each record captures what was done (maintenanceType), when (maintenanceDate/completedDate), who did it (performedBy/vendor), what it cost, and the outcome. The maintenanceType field uses indexedSelect with categories covering the common maintenance activities: Preventive (scheduled), Corrective (break-fix), Upgrade (hardware/firmware), Inspection, Cleaning, and Calibration.

Fields

Maintenance Record

FieldTypeRequiredNotes
reftextRef.
nametextYesMaintenance ID.
assetreference → ITASSETYesIT Asset.
maintenanceTypeenumYesValid ids: 1 (Preventive), 2 (Corrective), 3 (Upgrade), 4 (Inspection), 5 (Cleaning), 6 (Calibration).
statusenumYesValid ids: 1 (Scheduled), 2 (In Progress), 3 (Completed), 4 (Cancelled).
priorityenumValid ids: 1 (Critical), 2 (High), 3 (Medium), 4 (Low).

Schedule

FieldTypeRequiredNotes
maintenanceDatedateYesMaintenance Date.
completedDatedateCompleted Date.
nextScheduledDatedateNext Scheduled Date.
frequencyenumValid ids: 0 (One-off), 1 (Weekly), 2 (Monthly), 3 (Quarterly), 4 (Semi-Annual), 5 (Annual).

Assignment

FieldTypeRequiredNotes
performedByreference → userPerformed By.
vendorreference → VENExternal Vendor.
requestedByreference → userRequested By.

Work Performed

FieldTypeRequiredNotes
descriptiontext (multi-line)YesDescription.
workPerformedtext (multi-line)Work Performed.
partsUsedtext (multi-line)Parts Used.
outcomeenumValid ids: 1 (Resolved), 2 (Partially Resolved), 3 (Unresolved), 4 (Escalated), 5 (Replaced).

Cost & Warranty

FieldTypeRequiredNotes
costnumberCost.
labourHoursnumberLabour Hours.
partsCostnumberParts Cost.
labourCostnumberLabour Cost.
warrantyCoveredenumValid ids: 1 (Yes), 0 (No), 2 (Partial).
warrantyClaimReftextWarranty Claim Reference.
notestext (multi-line)Notes.

Relationships

  • Lookups: asset points at a ITASSET record; vendor points at a VEN record; performedBy points at a user; requestedBy points at a user.

Creating a IT Maintenance via the API

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

{
  "entity":   "ITMAINT",
  "level":    50100,
  "comboKey": "SUB:<your-sub-id>|ENT:",
  "name": "Example",
  "asset": "",
  "maintenanceType": "1",
  "status": "1"
}

Listing IT Maintenance Records

# All records in your tenant
GET /v1/entities/ITMAINT/SUB:<your-sub-id>

See also

itmaintitmaintenancerecordsitmaintenance

Was this article helpful?

← Back to Knowledge Base