Delete Item Methods

Under certain conditions I'd like to be able to programmatically delete an item. Looking in the docs I see insert_item and update_item. Is there a deletion method?

Dean

There's not a separate function for deletion, since there's not really a need to make the metadata creation easier. Once you have a reference to an item, you would just do

$item->delete();