Get Designations for Bibliographic Record

Get lists of Collections and Locations values for the items of a Bibliographic Record.

GET /api/.../bibliographicrecords/{id}/items?volumeNumber={volumeNumber}

Returns the lists of Collections and Locations for the items of a Bibliographic Record.

Request Information

Parameters
Name Type Required Description
id Integer Yes Bibliographic Record ID
volumeNumber Integer No Volume Number of an item.

Response Information

Example
application/json, text/json
{
    "Collections": [
        {
            "Code": "ANF",
            "Name": "Adult Nonfiction"
        },
        {
            "Code": "AMUS",
            "Name": "Adult Music"
        },
        {
            "Code": "ADK",
            "Name": "Adult Books"
        }
    ],
    "Locations": [
        {
            "Code": "MAIN",
            "Name": "Main Library"
        },
        {
            "Code": "EAST",
            "Name": "East Branch"
        },
        {
            "Code": "WEST",
            "Name": "West Branch"
        }
    ]
}

HTTP Response Codes

Code Description
200 OK. Success
404 id is invalid