Ledger Entry

Stores financial transaction details. You must have the financials ConventionPrivilege to access this, or be the leader of the Group that controls the ledger. Ledger Entrys are accessed via /api/ledgerentry.

Properties

See "Object Properties" in Introduction for basic shared properties.

Complete details in LedgerEntryProperties.

Related Objects

See "Related Objects" in Introduction for how to use them.

convention

The Convention this ledger entry belongs to (if any).

conventionreceipt

The ConventionReceipt this ledger entry belongs to (if any).

group

The Group this ledger entry belongs to.

supplyorder

The SupplyOrder this ledger entry belongs to (if any).

Includes

See "Includes" in Introduction for how to use them.

receipt_payment

Includes payment information associated with the Ledger Entry. Requires the financials privilege. Field is returned in format:

 {
   "id" : "xxx",
   ...
   "receipt_payment" : {
     "receipt_order_number" : [integer],
     "payment_method" : [string],
     "payment_transaction_id" : [string],
   },
   ...
 }

Services

The services used to fetch and manipulate ledger entries.

Read Ledger Entry

 GET /api/ledgerentry/xxx

Returns:

 {
   "id" : "xxx",
   "name" : "The Captain is Dead",
   ...
 }