© 2024 Clarivate
PUT /api/.../itemcheckouts/patron/{id}/ereceipt?circtype={6}
This method allows the caller to request an eReceipt for items checked out to a patron.
Name | Type | Required | Description |
---|---|---|---|
id | int | Yes | Define this parameter in the request query string. The unique id assigned to the patron. |
circtype | String | No | Define this parameter in the request query string. Possible values are "6" (CHKOUT_NORM) or "9" (RENEW_PATSTAT). |
Property | Type | Nullable | Description |
---|---|---|---|
ItemRecordID | Integer | No | Item record identifier. |
IsEphemeral | Boolean | No | Indicates item record is ephemeral or not. |
Count | Integer | No | Number of item records. An emphemeral item can have a number larger than 1. |
[
{
ItemRecordID: 46,
IsEphemeral: false
Count: 1
},
{
ItemRecordID: 52,
IsEphemeral: false
Count: 1
},
{
ItemRecordID: 66
IsEphemeral: true
Count: 5
}
]
Code | Description |
---|---|
200 | OK. Success |
400 | Bad request |