Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 6 Next »

Bib Availability status API returns the availability statuses of items associated with the bibliographic record. Since it returns availability statuses of all items associated with a bib, it is likely to be used in partner ILS' Discovery systems to retrieve and display multiple item and their statuses in case of serials and multi volume monographs. The API also accepts both the owning institution's bibliographic id (the id used internally in the partner's ILS) and the bibliographic id generated by SCSB. The institutionId value needs to mention which institution's bibliographicId is being passed.

Request - Bib Availability Status
{
  "bibliographicId": "773931", // Owning Institution's (CUL's) bibliographic id used internally in partner's ILS
  "institutionId": "CUL" // The owning institution's id. Possible values are PUL, CUL, NYPL or SCSB.
}


Request - Bib Availability Status
{
  "bibliographicId": "2590526", //SCSB's bibliographic record id
  "institutionId": "SCSB"
}


Response - Bib Availability Status
[
  {
    "itemBarcode": "33433011172446",
    "itemAvailabilityStatus": "Not Available", // Item is not in ReCAP facility
    "errorMessage": null
  },
  {
    "itemBarcode": "33433011172438",
    "itemAvailabilityStatus": "Available", // Item is in ReCAP facility
    "errorMessage": null
  }
]


Alternate Response - Bib Availability Status
[
  {
    "itemBarcode": null,
    "itemAvailabilityStatus": null,
    "errorMessage": "Bib Id doesn't exist in SCSB database." // Bibliographic record doesn't exist is SCSB
  }
]
  • No labels