Patron item checkouts

GET /api/.../patrons/{id}/itemcheckouts

Returns Patron item checkouts.

Request Information

Parameters
Name Type Required Description
id Integer Yes The unique id assigned to the patron.
pageRequest DtoPageRequest No Page Request Object
DtoPageRequest
Name Type Required Description
FilterBy String No Filter the data
Limit Integer No Page Limit
Offset Integer No Page Offset
OrderBy String No Order the data
PitID Integer No

Response Information

Example
application/json, text/json
    {
  "PitID": 42,
  "TotalCount": 28,
  "Offset": 0,
  "Checkouts": [
    {
      "ItemBarcode": "0000701211021",
      "CheckOutDate": "2007-12-19T16:46:40+01:00",
      "DueDate": "2008-01-16T23:59:00+01:00",
      "ReturnDate": "0001-01-01T00:00:00+01:00",
      "RenewCount": 0,
      "Renewable": null,
      "BibliographicRecordID": 504497,
      "Title": "The frog princess",
      "NativeTitle": null,
      "VolumeName": null,
      "Author": "Baker, E. D.",
      "NativeAuthor": null,
      "ISBNs": [
        "9781582347998",
        "9781582349237"
      ]
    }]
    }

HTTP Response Codes

Code Description
200 OK. Success