Skip to main content
OCLC Wise Support EN

Metadata

Find information about exporting titles and holdings as well as creating and retrieving sets of titles with the Wise Rest-API.

Export titles and holdings

There are two MARC21 export formats available with Wise: USmarc and VlaccMarc.

Endpoint Export format
/title/export

Exports titles in Vlacc Marc format

Role: TITELONDERHOUD (read-level authority at the institution level)

/title/marc/export

Exports titles in USmarc format

Role: TITELONDERHOUD (read-level authority at the institution level)

/title/set/setId

Export format depends on system locale:

  • nl_BE : VlaccMarc
  • nl_NL : USmarc
  • en_US : USmarc

Create a set of titles

The selections tool in the Wise Client can be used to create a set of titles. Create the query and then save it as a fixed query. This query can then be used to create a set of titles using the API. For example, you can create a query of recently updated titles of a set of all titles in a specified branch. Once the query is defined and saved, you can run this query every time you need an updated set:

POST /set { queryId=<queryId> }

The set is created, and the query will be executed. The response contains the newly created set id.

Retrieve a set of titles

If you have a set id, you can get the titles with the following endpoint:

GET /titlelist/set/setid/{setId}

The output is in MARC21 XML according to the system's locale (see above).

 

  • Was this article helpful?