Get Auth Record MARC Display

GET /api/.../authorityrecords/{id}/marcdisplay

Get MARC tags and subfields intended for display of MARC formatted record.

Request Information

Parameters
Name Type Required Description
id Integer Yes Authority Record ID

Response Information

Example
application/json, text/json
{
    AuthorityRecordID: 12345,
    leader: "     nz  a22     n  4500",
    controlfields: 
    [
        {
            tag: "001",
            data: "12345"
        },
        {
            tag: "005",
            data: "20000104090733.0"
        },
        {
            tag: "008",
            data: "000104n| acannaabn          |n aaa      ||||||"
        }
    ],
    datafields: 
    [
        {
            tag: "010",
            ind1: " ",
            ind2: " ",
            subfields: 
            [
                {
                    code: "a",
                    data: "n  00000050 "
                }
            ]
        },
        {
            tag: "040",
            ind1: " ",
            ind2: " ",
            subfields:
            [
                {
                    code: "a",
                    data: "DLC"
                },
                {
                    code: "b",
                    data: "eng"
                },
                {
                    code: "c",
                    data: "DLC"
                }
            ]
        },
        {
            tag: "100",
            ind1: "1",
            ind2: " ",
            subfields:
            [
                {
                    code: "a",
                    data: "Pember, Ann,"
                },
                {
                    code: "d",
                    data: "1946-"
                }
            ]
        },
        {
            tag: "670",
            ind1: " ",
            ind2: " ",
            subfields:
            [
                {
                    code: "a",
                    data: "Pember, Ann. Painting close-focus flowers in watercolor, 2000:"
                },
                {
                    code: "b",
                    data: "CIP t.p. (Ann Pember) data sheet (b. 04-26-46)"
                }
            ]
        }
    ]
}

HTTP Response Codes

Code Description
200 OK. Success
404 id is invalid