POST api/library/patron/holditem
No documentation available.
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| item | No documentation available. |
Define this parameter in the request body. |
Request body formats
application/json, text/json
Sample:
{
"HoldKey": 1,
"TitleKey": 2,
"Location": "sample string 3",
"Token": "sample string 4",
"UserID": "sample string 5"
}
application/xml, text/xml
Sample:
<HoldItem xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Blackpool.Libraries.Models"> <Token xmlns="http://schemas.datacontract.org/2004/07/Blackpool.Libraries.Models.Base">sample string 4</Token> <UserID xmlns="http://schemas.datacontract.org/2004/07/Blackpool.Libraries.Models.Base">sample string 5</UserID> <HoldKey>1</HoldKey> <Location>sample string 3</Location> <TitleKey>2</TitleKey> </HoldItem>
application/x-www-form-urlencoded
Sample:
Sample not available.