Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejs
titleRequest - Request (Recall) Item
linenumberstrue
{
  "author": "",
  "bibId": "",
  "callNumber": "",
  "chapterTitle": "",
  "deliveryLocation": "PA",
  "emailAddress": "test@example.com",
  "endPage": "",
  "issue": "",
  "itemBarcodes": [
    "PULTST54322"
  ],
  "itemOwningInstitution": "PUL",
  "patronBarcode": "45678913",
  "requestNotes": "Test Request",
  "requestType": "RECALL",
  "requestingInstitution": "PUL",
  "startPage": "",
  "titleIdentifier": "",
  "trackingId": "",
  "username": "admin",
//User with Request permission
  "volume": ""
}


Info
titleEDD Request

In case the request to be placed is an EDD (Electronic Document Delivery) request, the requestType value is mentioned as EDD as shown below.

...

Code Block
languagejs
titleRequest - Request (EDD) Item
linenumberstrue
{
  "author": "",
  "bibId": "",
  "callNumber": "",
  "chapterTitle": "Title",
  "deliveryLocation": "PA",
  "emailAddress": "test@example.com",
  "endPage": "180",
  "issue": "",
  "itemBarcodes": [
    "PULTST54322"
  ],
  "itemOwningInstitution": "PUL",
  "patronBarcode": "45678913",
  "requestNotes": "Test Request",
  "requestType": "EDD",
  "requestingInstitution": "PUL",
  "startPage": "50",
  "titleIdentifier": "",
  "trackingId": "",
  "username": "admin", //User with Request permission
  "volume": "Vol 32"
}


Info
titleResponse

Responses to all the above request calls are given out as below since partner APIs give out delayed responses. The responses would be listened to, consolidated and will be broadcast over ActiveMQ.

...