Doorgaan naar hoofdcontent
OCLC Wise Support NL

How to: Show predefined carousels with titles

This manual describes how you can retrieve predefined carousels with the Wise API. In Wise you have the ability to fill carousels with different title sets. You could use new arrivals, show charts, use a community id or make your own selection.

 

Example implementation:

clipboard_e0e1ddb4795e5f2c3d9a697a838b24ddb.png

 

See how these carousels are configured:

NL: https://help-nl.wise.oclc.org/Manage...zuil_Carrousel

ENG: https://help.wise.oclc.org/Wise_conf.../Wise/Carousel

Infopoint

Get a full list of titles including basic title information

GET /infopoint/{profileId}/full?branchId={branchId}&shelfLimit=1&booksPerShelfLimit=1

Example response

{
    "profileId": 1,
    "name": "testkevinplank",
    "available": true,
    "validationErrors": [],
    "shelfs": [
        {
            "id": "1",
            "name": "test",
            "FirstLineShow": false,
            "shelfShow": true,
            "limit": 1,
            "items": [
                {
                    "id": "1283818",
                    "title": "Brasileirinho - Een ontdekkingsreis in de choro, de ziel van de Braziliaanse muziek!",
                    "mainTitle": "Brasileirinho - Een ontdekkingsreis in de choro, de ziel van de Braziliaanse muziek!",
                    "subtitle": "",
                    "classification": [],
                    "genre": [],
                    "isbn": [],
                    "imageUrls": {
                        "small": "https://{server}/cgi-bin/momredir.pl?size=80&cdr=KHD0037;key=1283818;",
                        "medium": "https://{server}/cgi-bin/momredir.pl?size=120&cdr=KHD0037;key=1283818;",
                        "large": "https://{server}/cgi-bin/momredir.pl?size=245&cdr=KHD0037;key=1283818;"
                    },
                    "origin": "WISE",
                    "language": [],
                    "informative": false,
                    "narrative": false,
                    "youth": false,
                    "adult": false,
                    "frbrDocumentType": "SINGLE",
                    "childTitleList": []
                }
            ]
        }
    ]
}

You can redirect to the catalog of the library by using the 'id' and redirecing to: https://{server}/wise-apps/opac/branch/{branchId}/catalog/title-detail/WISE/{id}

 

  • Was dit artikel nuttig?