http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12590 --- Comment #1 from Petter Goksøyr Åsen <boutrosboutrosboutros@gmail.com> --- Created attachment 29786 --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=29786&action=edit Bug 12590 - Support deletion of biblio in svc API The /svc endpoint allows you to create and update biblio records. This patch extends it so that it is also possible to delete a biblio. Test plan * Create a new biblio by sending a POST request to /svc/new_bib with a marcxml record as request body. Note the biblionumber it gets assigned. * Make some changes to the marcxml record, and update it by sending a POST request to /svc/bib/{bibilonumber} * Observe that the changes are persisted on the biblio record. * Now delete the bilblio by sending a DELETE request to /svc/bib/{biblionumber} * Observe that the biblio is indeed gone from the db. -- You are receiving this mail because: You are watching all bug changes.