The Cancel Hold of an Item is an internal call made by SCSB as part of the Cancel Request API. This is exposed as an API to ease the process of testing and will not be directly used by any actors outside of SCSB.
Code Block |
---|
language | js |
---|
title | Request - Cancel Hold |
---|
linenumbers | true |
---|
|
{
"bibId": "459389", // Owning Institution Bibliographic Id
"itemBarcodes": [
"32101043878741" // Item Barcode. Common across Storage Location, ILS and SCSB.
],
"itemOwningInstitution": "<Institution>", // Item owning Institution. Possible values are PUL, CUL and NYPL.
"patronIdentifier": "<Patron ID>", // The patron barcode issued by the partner ILS.
"pickupLocation": "<Pickup Location>", // The pickup location detail used in the partner's ILS.
"trackingId": "" //ILS generated ID when the cancel is initiated on their side used as a reference to return response in SCSB.
} |
...