Versions Compared

Key

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

...

Code Block
languagejs
titleResponse - Transfer Holdings
linenumberstrue
{
  "message": "Success",
  "holdingTransferResponses": [
    {
      "message": "Successfully relinked", // Success Message
      "holdingsTransferRequest": {
        "source": {
          "owningInstitutionBibId": "53624", 
          "owningInstitutionHoldingsId": "59753" 
        },
        "destination": {
          "owningInstitutionBibId": "1421", 
          "owningInstitutionHoldingsId": "59753" 
        }
      }
    }
  ],
  "itemTransferResponses": []
}


Code Block
languagejs
titleAlternate Response - Transfer Holdings
linenumberstrue
{
  "message": "Failed",
  "holdingTransferResponses": [
    {
      "message": "Source holdings is not under source bib", // Failure Message. When holdings are not under the source bib.
      "holdingsTransferRequest": {
        "source": {
          "owningInstitutionBibId": "1421",
          "owningInstitutionHoldingsId": "59753"
        },
        "destination": {
          "owningInstitutionBibId": "53624",
          "owningInstitutionHoldingsId": "59753"
        }
      }
    }
  ],
  "itemTransferResponses": []
}