Process Check-out eReceipt

Process email or text receipt for checked out items

PUT /api/.../itemcheckouts/patron/{id}/ereceipt?circtype={6}

This method allows the caller to request an eReceipt for items checked out to a patron.

Request Information

Parameters
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).
Array of data
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.
Example
application/json, text/json
[
    {
     ItemRecordID: 46, 
     IsEphemeral: false
     Count: 1
    }, 
    {
     ItemRecordID: 52,
     IsEphemeral: false
     Count: 1
    }, 
    {
     ItemRecordID: 66
     IsEphemeral: true
     Count: 5
    }
]

HTTP Response Codes

Code Description
200 OK. Success
400 Bad request