Create patron bulk change.

POST /api/.../patronbulkchanges&whatif=true

Return summary of changes without performing the bulk change.

POST /api/.../patronbulkchanges

Schedule background job and return new patron bulk change identifier.

Request Information

Parameters
Name Type Required Description
dto CreatePatronBulkChangeInfo Yes Define this parameter in the request body.
DtoPatronBulkChangeCreateInfo
Property Type Nullable Description
RecordSetID int No The patron record set identifier to bulk change.
LanguageID int No The patron's language preference. If zero then no changes are made.
Example
application/json, text/json
        {
            "RecordSetID": 14973,
            "LanguageID": 2
        }
    

Response Information

A new patron bulk change identifier is returned upon success.

Example
application/json, text/json
true

HTTP Response Codes

Code Description
200 OK. Success
400 Bad request.