E124: Get receipt detail
GET /api/purchase-order-receipts/:id
Returns a single receipt with its received-item rows. Triggered by clicking a receipt in the PO detail page.
Authentication
Standard tenant route. Requires Authorization: Bearer <firebase-id-token> and X-Org-Id: <org-id>. Access: Member.
Request
No body.
Response — 200 OK
{
"id": "uuid",
"poId": "uuid",
"receiptDate": "2026-05-25",
"notes": "...",
"items": [
{ "id": "uuid", "poItemId": "uuid", "quantity": 100, "unitCost": 12.34 }
]
}
Errors
| HTTP | code | Condition |
|---|---|---|
| 404 | not_found | No such receipt. |
Workflow
Calls W124 Get receipt detail.