DemandFlow Support Centre

ITENCTYPE: IT encryption type

ReferenceEntity Reference16/04/2026Updated 16/04/2026
Encryption type classification with algorithm, key length, and category for security compliance tracking.

ITENCTYPE: IT encryption type

Encryption type classification with algorithm, key length, and category for security compliance tracking.

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

Entity properties

PropertyValue
Entity codeITENCTYPE
Display nameIT encryption type
PluralIT encryption types
Level250

Use cases

ITENCTYPE defines encryption type classifications referenced by ITASSET and other security-related entities. The encryptionCategory field categorises by scope: Full Disk Encryption, File/Folder Encryption, Database Encryption, Network/Transport Encryption, Application Encryption, Hardware Encryption, or No Encryption. The algorithm field links to ENCALG for the specific cryptographic algorithm (e.g., AES-256, RSA), while keyLength captures the key size.

Fields

IT encryption type

FieldTypeRequiredNotes
reftextRef.
nametextYesName.
descriptiontext (multi-line)Description.
encryptionCategoryenumYesValid ids: 1 (Full Disk Encryption), 2 (File/Folder Encryption), 3 (Database Encryption), 4 (Network/Transport Encryption), 5 (Application Encryption), 6 (Hardware Encryption), 7 (No Encryption).
algorithmreference → ENCALGEncryption Algorithm.
keyLengthtextKey Length.
activeenumYesValid ids: 1 (Yes), 0 (No).

Relationships

  • Lookups: algorithm points at a ENCALG record.

Creating a IT encryption type via the API

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

{
  "entity":   "ITENCTYPE",
  "level":    250,
  "comboKey": "SUB:<your-sub-id>|ENT:",
  "name": "Example",
  "encryptionCategory": "1",
  "active": "1",
  "ref": "..."
}

Listing IT encryption types

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

See also

itenctypeitencryptiontypetypesit_asset_type

Was this article helpful?

← Back to Knowledge Base