POLI Linked Invoice Line Items

Get list of linked Invoice Line Items by Purchase Order Line Item ID

GET /api/.../polineitems/{id}/invoicelineitems

Returns a purchase order line item's linked invoice line items.

Request Information

Parameters
Name Type Required Description
id Integer Yes The unique id assigned to the purchase order line item.

Response Information

Example
application/json, text/json
[
  {
    "InvLineItemID": 123,
    "InvNumber": "INV123",
    "InvNumberSuf": "kkk",
    "ISBN_ISSN": "isbn",
    "PaymentStatusID": 2,
    "PaymentStatus": "status",
    "PaymentStatusDate": "2008-07-25",
    "Segs": 3,
    "Title": "title 1"
  },
   {
    "InvLineItemID": 124,
    "InvNumber": "INV124",
    "InvNumberSuf": "ggg",
    "ISBN_ISSN": "isbn",
    "PaymentStatusID": 2,    
    "PaymentStatus": "",
    "PaymentStatusDate": "2014-05-08",
    "Segs": 2,
    "Title": "title 2"
  }
]

HTTP Response Codes

Code Description
200 OK. Success
400 FAILURE.
  • Bad request
  • Invalid purchase order line item ID

Required Permissions

Permission IDs found here.

    CR_AccessAcquisitions_Allow (),
    CR_PurchaseOrders_Access (based on owner ID)