Module: bibHoldingsGet

(require("bibHoldingsGet"))(id) → {promise}

Returns holdings information for a specified bibliographic record.
Parameters:
Name Type Description
id integer The bibligraphic ID you want to load
Source:
Returns:
Type
promise
Example
myPapi.bibHoldingsGet('123456')
     .then(function(response) {
         console.log(response.data);
     });