@@ -, +, @@ response --- Koha/Biblio.pm | 3 ++- Koha/Item.pm | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) --- a/Koha/Biblio.pm +++ a/Koha/Biblio.pm @@ -1130,7 +1130,8 @@ sub to_api_mapping { unititle => 'uniform_title', seriestitle => 'series_title', copyrightdate => 'copyright_date', - datecreated => 'creation_date' + datecreated => 'creation_date', + deleted_on => undef, }; } --- a/Koha/Item.pm +++ a/Koha/Item.pm @@ -1400,7 +1400,8 @@ sub to_api_mapping { enumchron => 'serial_issue_number', copynumber => 'copy_number', stocknumber => 'inventory_number', - new_status => 'new_status' + new_status => 'new_status', + deleted_on => undef, }; } --