Patron claim and lost items count Information

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

Returns total/current claims and total/current lost items count associated with the patron.

Request Information

Parameters
Name Type Required Description
id Integer Yes The unique id assigned to the patron.

Response Information

Example
application/json, text/json
{
    "CurrentClaimCount":25,
    "OverallClaimCount":0,
    "CurrentLostCount":2,
    "OverallLostCount":2
}

HTTP Response Codes

Code Description
200 OK. Success
400 FAILURE. Invalid PatronID
404 FAILURE. PatronID does not exist.