Represents an item ledger entry in Business Central.
Note
For information about enabling APIs for Business Central see Enabling the APIs for Dynamics 365 Business Central.
Methods
| Method | Return Type | Description |
|---|---|---|
| GET itemLedgerEntry | itemLedgerEntry | Gets a item ledger entry object. |
Properties
| Property | Type | Description |
|---|---|---|
| id | GUID | The unique ID of the item ledger entry. Non-editable. |
| entryNumber | integer | G/L Entry number. |
| itemNumber | string | The name of the item in the item ledger entry. |
| postingDate | date | The date that the item ledger entry is posted. |
| entryType | NAV.itemLedgerEntryType | |
| sourceNumber | string | |
| sourceType | NAV.analysisSourceType | |
| documentNumber | string | Specifies a document number for the item ledger entry. |
| documentType | NAV.itemLedgerDocumentType | |
| description | string | Specifies the description of the item ledger entry. |
| quantity | decimal | The quantity of the item in the item ledger entry. |
| salesAmountActual | decimal | |
| costAmountActual | decimal | |
| lastModifiedDateTime | datetime | The last datetime the item ledger entry was modified. Read-Only. |
JSON representation
Here's a JSON representation of the itemLedgerEntry resource.
{
"id": "GUID",
"entryNumber": "integer",
"itemNumber": "string",
"postingDate": "date",
"entryType": "NAV.itemLedgerEntryType",
"sourceNumber": "string",
"sourceType": "NAV.analysisSourceType",
"documentNumber": "string",
"documentType": "NAV.itemLedgerDocumentType",
"description": "string",
"quantity": "decimal",
"salesAmountActual": "decimal",
"costAmountActual": "decimal",
"lastModifiedDateTime": "datetime"
}