Get range of item records paged

Range of item records paged

GET /api/.../itemrecords/paged

Get range of item records paged

Request Information

Parameters
Name Type Required Description
pageRequest DtoItemRecordsPageRequest No Page Request Object
DtoItemRecordsPageRequest
Name Type Required Description
Limit Integer No Page Limit
Offset Integer No Page Offset
SortOption String No Order the data, default will be CallNumber ascending sort.
PitID Integer No Point-in-time ID representing the snapshot of data for this query, initial value should be 0.
StartBarcode String Yes Start Barcode for the range of item records.
EndBarcode String Yes End Barcode for the range of item records.
Request body
Example
application/json, text/json
{ 
    SortOption: Default, 
    StartBarcode: "1234567890",
    EndBarcode: "0987654321",
    PitID: 0,
    Limit: 12,
    Offset: 0
}
        

Response Information

Example
application/json, text/json
{
  "PitID": 144,
  "TotalCount": 9,
  "Offset": 0,
  "ItemRecords": [
    {
        "ItemRecordID": 456
    },
    {
        "ItemRecordID": 1234
    }
  ]
}

HTTP Response Codes

Code Description
200 OK. Success