Get Linked Invoices

Get the invoices linked to a Bibliographic Record.

GET /api/.../bibliographicrecords/{id}/linkedinvoices

This returns summary information for each linked invoice and is intended to be used in a list view display.

Request Information

Parameters
Name Type Required Description
id Integer Yes Bibliographic Record ID

Response Information

Example
application/json, text/json
[
  {
    "InvoiceID": 1234,
    "InvoiceNumber": "INV123456",
    "Date": "2023-01-01T00:00:00Z",
    "Supplier": "Supplier Name",
    "Total": 100.00,
    "Status": "Paid"
  },
  {
    "InvoiceID": 5678,
    "InvoiceNumber": "INV789012",
    "Date": "2023-02-01T00:00:00Z",
    "Supplier": "Another Supplier",
    "Total": 200.00,
    "Status": "Unpaid"
  }
]

HTTP Response Codes

Code Description
200 OK. Success
404 Not found. ID is invalid