© 2025 Clarivate
PUT /api/.../recordsets/{id}/duedate?closedate=true&ignoreblock=false&ignoreoverdue=false&reason=11&reasonNote=TestNote
Reset due date of an item record set.
| Name | Type | Required | Description |
|---|---|---|---|
| id | Integer | Yes | The id of the item record set. |
| duedate | string | Yes | Due date for the items in the item record set. |
| closeddate | Boolean | No | Defaults to true. Indicates the due date is a closed date. |
| ignoreblock | Boolean | No | Defaults to false. Indicates blocks are to be ignored. |
| ignoreoverdue | Boolean | No | Defaults to false. Indicates overdues are to be ignored. |
| reason | integer | No | Reason code for the reset due date. |
| reasonNote | string | No | Reason note. |
| Code | Description |
|---|---|
| 200 | Reset due date Success |
| 404 | Record set was not found. |
| 403 | Permission(s) not granted. |
Items with blocks are returned in the response body.
{
"SuccessCount": 1,
"SkippedCount": 0,
"PromptCount": 1,
"DueDate": "20160922",
"ClosedDate": false,
"IgnoreBlock": false,
"IgnoreOverdue": false,
"Reason": 11,
"ReasonNote": "note",
"ItemBlocks":
{
"ItemRecordID: 1,
"Title": ""
"PatronID": 2,
"Message": "",
"Blocks":
{
"block 1",
"block 2"
},
"CanOverride": true
}
}