E110: Get ledger entry detail
GET /api/finished-goods-inventory/ledger/:id
Returns a single ledger entry by id. Triggered by clicking a row in the Finished Goods Inventory Ledger page.
Authentication
Standard tenant route. Requires Authorization: Bearer <firebase-id-token> and X-Org-Id: <org-id>. Access: Member. Also reachable with an org-scoped PAT.
Request
No body. :id is the ledger entry's UUID.
Response — 200 OK
{
"id": "uuid",
"orgId": "uuid",
"code": "FIL-001",
"skuId": "uuid",
"locationId": "uuid",
"eventType": "TRANSFER",
"quantity": "100",
"unitCost": null,
"ref": "TFR-FG-042",
"toLocationId": "uuid",
"notes": "...",
"eventDate": "2026-06-10T00:00:00Z",
"sourceType": null,
"sourceId": null,
"createdAt": "2026-06-10T00:00:00Z"
}
Errors
| HTTP | code | Condition |
|---|---|---|
| 404 | not_found | No such ledger entry. |
Workflow
Calls W110 Get ledger entry detail.