IPWorks Cloud 2020 Python Edition

Questions / Feedback?

delete_item Method

Deletes an item permanently.

Syntax

def delete_item(item_id: str) -> None: ...

Remarks

This method deletes the item specified by ItemId permanently. Must call list_items before the Item* properties property will be updated.

// Deletes the first item.
shareFile.ListItems();
string ItemId = shareFile.Items[0].Id;
shareFile.DeleteItem(ItemId);

Copyright (c) 2022 /n software inc. - All rights reserved.
IPWorks Cloud 2020 Python Edition - Version 20.0 [Build 8265]