Update Patron Pick List

Update Outreach Patron Pick List

PUT /api/.../patrons/{id}/readerservices/picklist

Update patron pick list.

Required Permissions

Permission IDs found here.

Name
AccessPatronServices_Allow
PatronStatus_Access
PatronStatus_DisplayReaderServices
PatronStatus_ModifyReaderServices

Request Information

Parameters
Name Type Required Description
orsData DtoORSPatronSelectList Yes Define this parameter in the request body.
id Integer Yes The unique id assigned to the patron.
DtoORSPatronSelectList
Property Type Nullable Description
PatronID Int No The unique id assigned to the patron.
PickListItems List of integers Yes List of itemrecord ids.
Request body
Example
application/json, text/json
    {
      "PatronID": 357374,
      "PickListItems": [
        257,258,259
      ]
    }
      

Response Information

Returns true if update is successful.
Example
application/json, text/json
{
    true
}

HTTP Response Codes

Code Description
200 OK. Success
400 Null object. Bad request
409 CONFLICT. Patron record is secured.