© 2025 Clarivate
PUT /api/.../serialcheckins/{id}/notes
Modify notes for a serial check in holdings record.
| 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. |
| 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 |
{
"copyID": 6,
"noteNonPub": "Non public note is modified",
"noteStaff": "Non public note and warnings modified"
}
True is returned upon success.
true
| Code | Description |
|---|---|
| 200 | OK. Success |
| 400 | FAILURE. Invalid CopyID. |