LDG: Ledger
A financial ledger entry recording transactions against a project with type, amount, date, and purchase order reference.
Default definition. This article describes the default
LDG 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 LDG.Entity properties
| Property | Value |
|---|---|
| Entity code | LDG |
| Display name | Ledger |
| Plural | Ledger Entries |
| Level | 55000 |
Use cases
LDG provides a simple financial transaction log for projects, linked via comboKey SUB|PJ. Each entry records a transaction name, type, amount, entry date, and optional purchase order reference. The entity appears on the Project (PJ) Ledger panel.
Fields
Risk
| Field | Type | Required | Notes |
|---|---|---|---|
name | text | Yes | Risk |
type | text | Type | |
amount | text | Amount | |
entrydate | date | Type | |
po | text | PO |
Relationships
- No declared relationships in the default definition.
Creating a Ledger via the API
POST /v1/objects
Authorization: Bearer <your-pat>
Content-Type: application/json
{
"entity": "LDG",
"level": 55000,
"comboKey": "SUB:<your-sub-id>|ENT:",
"name": "Example",
"type": "Example",
"amount": "Example",
"entrydate": "2026-01-01"
}
Listing Ledger Entries records
# All ledger entries in your tenant
GET /v1/entities/LDG/SUB