Bibliographic Record

Get Bibliographic Record by ID

GET /api/.../bibliographicrecords/{id}

Returns bibliographic record by id.

Request Information

Parameters
Name Type Required Description
id Integer Yes The unique id assigned to the bib record.
checkforresourcelinks Bool No Define this parameter in the request query string. If true, the LinkedToResourceRecord property will be set based on the existence of links in the database.

Response Information

Example
application/json, text/json
[
    {
       "BibliographicRecordID":5,
       "RecordStatusID":1,
       "RecordOwnerID":1,
       "CreatorID":1,
       "ModifierID":130,
       "CreatorName":"PolarisExec",
       "ModifierName":"jferriss",
       "BrowseAuthor":"Singer, Joe, 1923-",
       "BrowseTitle":"Charles Pfahl, artist at work",
       "BrowseCallNo":"759.1 P52s Oversize",
       "DisplayInPac":true,
       "ImportedDate":null,
       "MARCBibStatus":"c",
       "MARCBibType":"a",
       "MARCBibLevel":"m",
       "MARCTypeControl":" ",
       "MARCBibEncodingLevel":" ",
       "MARCDescCatalogingForm":"a",
       "MARCLinkedRecordReq":" ",
       "MARCPubDateOne":"1977",
       "MARCPubDateTwo":null,
       "MARCTargetAudience":"e",
       "MARCLanguage":"eng",
       "MARCPubPlace":"nyu",
       "PublicationYear":1977,
       "MARCCreationDate":"770511",
       "MARCModificationDate":"20070727131604.0",
       "MARCLCCN":"   77008693",
       "MARCMedium":null,
       "MARCPublicationStatus":"s",
       "ILLFlag":false,
       "MARCCharCodingScheme":" ",
       "SortAuthor":"SINGER JOE 04(1923)99",
       "LiteraryForm":"0",
       "RecordStatusDate":"2005-06-02T06:58:31.75",
       "ModifiedByAuthorityJob":false,
       "PrimaryMARCTOMID":1,
       "FirstAvailableDate":"1987-07-11T00:00:00",
       "CreationDate":"1987-07-11T00:00:00",
       "ModificationDate":"2007-07-27T13:16:04",
       "LifeTimeCircCount":31,
       "LifetimeInHouseUseCount":0,
       "SortTitle":"CHARLES PFAHL ARTIST AT WORK",
       "Popularity":2146558012,
       "ImportedFileName":null,
       "BrowseTitleNonFilingCount":0,
       "ImportedControlNumber":null,
       "ImportedRecordSource":null,
       "HasElectronicURL":false,
       "DoNotOverlay":false,
       "HostBibliographicRecordID":null,
       "HasConstituents":false,
       "IsEContent":false,
       "ISBN":"1423548957",
       "ISSN":null,
       "OCLCNumber":null,
       "UPCNumber":null,
       "LinkedToResourceRecord":null
    }
]

Brief Bibliographic Record

Get brief information for Bibliographic Record by ID

GET /api/.../bibliographicrecords/{id}?view=brief

Returns brief information of bibliographicrecords record by id. ISBN or ISSN or UPCNumber or OCLCNumber is used to build bookjacket URL

Request Information

Parameters
Name Type Required Description
id Integer Yes The unique id assigned to the bib record.
view string Yes Define this parameter in the request query string to get the brief information of the bib. Possible Values: brief

Response Information

Example
application/json, text/json
    {
        "BibliographicRecordID":5000,
        "BrowseAuthor":"Grahame, Kenneth, 1859-1932.",
        "BrowseTitle":"The wind in the willows",
        "ISBN":"9780684128191",
        "ISSN":null,
        "UPCNumber":null,
        "OCLCNumber":null,
        "FormatID":1
    }

Brief Bibliographic Record for Serials

Get brief information for Bibliographic Record by ID for serials

GET /api/.../bibliographicrecords/{id}?view=scsbrief

Returns brief information of bibliographic record by id.

Request Information

Parameters
Name Type Required Description
id Integer Yes The unique id assigned to the bib record.
view string Yes Define this parameter in the request query string to get the brief information of the bib. Possible Values: scsbrief

Response Information

Example
application/json, text/json
    {
      "BibliographicRecordID": 9,
      "RecordStatusID": 1,
      "BrowseAuthor": "Burt, William Henry, 1903-",
      "BrowseTitle": "A field guide to the mammals : North America north of Mexico",
      "Publisher": "Houghton Mifflin,",
      "PubDate": "1976",
      "DisplayInPAC": true,
      "HostFlag": false,
      "ConstituentFlag": false,
      "IsSerial": false,
      "ISBN": "0395240824.",
      "ISSN": null,
      "ISSNCancel": null,
      "NormalISBN": null,
      "ISBNList": [],
      "SeriesTitle": "Peterson field guide series ;",
      "SeriesNo": "5."
    }

HTTP Response Codes

Code Description
200 OK. Success
400 FAILURE.
  • Bad request
  • Invalid bibliographic ID
404 FAILURE.
  • Bibliographic record not found