Skip to main content
Version: v1.0.0(int)

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

HTTPcodeCondition
404not_foundNo such receipt.

Workflow

Calls W124 Get receipt detail.