EBSCOhost

EBSCOhost Integration Toolkit

NovelistSelect

Click here for a complete list of operations.


FindSimilarSearch

The Search method takes the ISBN provided, grabs information about that book, and uses it to select other titles that are similar.

To test the operation using the HTTP GET protocol, click the 'Invoke' button.

Parameter Value Default Value Notes
prof:(customerID.groupID.profileID)
  • Required Field if using Profile Authentication
pwd:
  • Required Field if using Profile Authentication
authType: profile
  • Indicates if using IP Authentication or Profile Authentication. Valid values are: (ip, profile)
ipprof:(profileID)
  • Required Field if using IP Authentication
isbn:
  • ISBN to be used for the search. Example: 9780060175405
  • Required Field
numrecs: 10
  • Number of record for the result set returned from a search.
  • Greater than 0

The following is a sample HTTP GET response.

<novelistSelectResponse>
   <searchResults>
            <records type="SimilarTitles"> <!-- N-number of record elements, one per similar book returned from the request -->
                  <record>
                      <author/>
                      <title/>
                      <isbnList>  <!-- N-number of isbn elements, one per isbn for this record>
                          <isbn/>
                      </isbnList>
                      <dbUsed/> <!-- Identifies the data source this record was found>
                      <WhySuggested reason="A short sentence about why this matched."/>
                  </record>
           </records>
   </searchResults>
</novelistSelectResponse>