Skip to main content

Get purchase order bills

GET 

/purchase-orders/:purchaseOrderNumber/bills

Returns all bills linked to a specific purchase order. Useful for tracking vendor billing against received goods — a single PO may have multiple bills.

Request

Response

Bills for this purchase order

Response
{
"data": [
{
"billNumber": "BILL-2025-0031",
"vendorInvoiceNumber": "VND-INV-88421",
"purchaseOrderNumber": "PO-2025-0471",
"vendorName": "Pacific Ingredients Co.",
"status": "accepted",
"invoiceDate": "2025-03-10",
"dueDate": "2025-04-09",
"paymentTerms": "Net 30",
"currency": "USD",
"subtotal": 2800,
"taxTotal": 224,
"totalAmount": 3024,
"paidAmount": 0,
"paymentMethod": "bank_transfer",
"notes": null,
"lineItems": [
{
"lineType": "item",
"skuCode": "2087",
"description": "Organic Tahini",
"quantity": 200,
"unitOfMeasure": "lbs",
"unitPrice": 3.25,
"taxRate": 0.08,
"taxAmount": 52,
"lineAmount": 650
}
]
}
]
}