Modify Notes

PUT /api/.../serialcheckins/{id}/notes

Modify notes for a serial check in holdings record.

Request Information

Parameters
Name Type Required Description
id Integer Yes The unique id assigned to the serial check in record.
dto DtoSerialCheckInNotes Yes Define this parameter in the request body.
dto
Property Type Nullable Description
CopyID Int No The unique id assigned to the serial check in record.
NoteNonPub String Yes Non public note
NoteStaff String Yes Non-public/ warning note
Example
application/json, text/json
  {   
    "copyID": 6,
    "noteNonPub": "Non public note is modified",
    "noteStaff": "Non public note and warnings modified"
}

Response Information

True is returned upon success.

Example
application/json, text/json
true

HTTP Response Codes

Code Description
200 OK. Success
400 FAILURE. Invalid CopyID.