@@ -, +, @@ cancelation_date, but it should be cancellation_date --- Koha/Hold.pm | 2 +- api/v1/swagger/definitions/hold.json | 2 +- api/v1/swagger/paths/holds.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) --- a/Koha/Hold.pm +++ a/Koha/Hold.pm @@ -416,7 +416,7 @@ sub to_api_mapping { branchcode => 'pickup_library_id', notificationdate => undef, reminderdate => undef, - cancellationdate => 'cancelation_date', + cancellationdate => 'cancellation_date', reservenotes => 'notes', found => 'status', itemnumber => 'item_id', --- a/api/v1/swagger/definitions/hold.json +++ a/api/v1/swagger/definitions/hold.json @@ -22,7 +22,7 @@ "type": ["string", "null"], "description": "Internal library identifier for the pickup library" }, - "cancelation_date": { + "cancellation_date": { "type": ["string", "null"], "format": "date", "description": "The date the hold was cancelled" --- a/api/v1/swagger/paths/holds.json +++ a/api/v1/swagger/paths/holds.json @@ -37,7 +37,7 @@ "type": "string" }, { - "name": "cancelation_date", + "name": "cancellation_date", "in": "query", "description": "The date the hold was cancelled", "type": "string", --