Show predefined carousels with titles
Learn how to create and work with title carousels with the Wise Rest-API.
In Wise, it is possible to fill carousels with different title sets, and it is also possible to retrieve predefined carousels with the Wise API. For example, you could use new arrivals, use a Community list, or make your own selection.
Example implementation:

For more information on carousel configuration, see 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 redirecting to: https://{server}/wise-apps/opac/branch/{branchId}/catalog/title-detail/WISE/{id}