DemandFlow Support Centre

IDNLINE: Inbound Delivery Line Item

ReferenceEntity Reference16/04/2026Updated 16/04/2026
A line item on an inbound delivery note, tracking individual components with ordered and received quantities.

IDNLINE: Inbound Delivery Line Item

A line item on an inbound delivery note, tracking individual components with ordered and received quantities.

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

Entity properties

PropertyValue
Entity codeIDNLINE
Display nameInbound Delivery Line Item
PluralInbound Delivery Line Items
Level25000

Use cases

IDNLINE is a child entity of IDN (Inbound Delivery Note), linked via the SUB|IDN comboKey. Each line item represents a distinct component or product within a delivery. The entity captures the item identity (name, description), component relationships (vendor via VEN, component via COMP, sub-component via SUBCOMP), and quantity tracking (ordered qty vs received qty).

Fields

Line item

FieldTypeRequiredNotes
nametextYesItem Name.
descriptiontext (multi-line)Descriptiom.

Component data

FieldTypeRequiredNotes
vendorreference → VENYesSupplier.
compoonentreference → COMPComponent.
subcompoonentreference → SUBCOMPSub-Component.
bomIdreference → BOMBOM.
isBomItembooleanBOM Item.
perServerQtynumberPer Kit Qty.

Quantities

FieldTypeRequiredNotes
qtynumberYesQty.
receivednumberReceived.

Relationships

  • Lookups: vendor points at a VEN record; compoonent points at a COMP record; subcompoonent points at a SUBCOMP record; bomId points at a BOM record.

Creating a Inbound Delivery Line Item via the API

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

{
  "entity":   "IDNLINE",
  "level":    25000,
  "comboKey": "SUB:<your-sub-id>|ENT:",
  "name": "Example",
  "vendor": "",
  "qty": 1,
  "description": "..."
}

Listing Inbound Delivery Line Items

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

See also

idnlineinbounddeliverylineitemitemsinbounddeliverieslines

Was this article helpful?

← Back to Knowledge Base