© 2025 Clarivate
GET /api/.../bibliographicrecords/{id}/linkedinvoices
This returns summary information for each linked invoice and is intended to be used in a list view display.
Name | Type | Required | Description |
---|---|---|---|
id | Integer | Yes | Bibliographic Record ID |
[
{
"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"
}
]
Code | Description |
---|---|
200 | OK. Success |
404 | Not found. ID is invalid |