Purchase Order Line Item ISBN/Price list

Get ISBN and Price list for purchase order line item by ID

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

Returns list of objects with ISBN and Price for purchase order line item by id.

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
 [
  {
    "ISBN_ISSN": "0060247630 (lib. bdg.) :",
    "Price": 5.79,
    "IsISBN": true
  },
  {
    "ISBN_ISSN": "0060247622 :",
    "Price": 6.95,
    "IsISBN": true
  }
]

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)