GuidesTrashPermanently Delete Web Link
Edit this page

Permanently Delete Web Link

Permanently Delete Web Link

Once a web link has been moved to the trash, it will stay in the trash for 30 days by default before being purged. Administrators of Business or Enterprise accounts can alter the purge window. If you wish to permanently delete the web link from the trash before the purge window expires, make a DELETE request to /web_links/:web_link_id/trash using the trashed web link's ID.

cURL
curl -X DELETE https://api.box.com/2.0/web_links/12345/trash \
     -H 'Authorization: Bearer <ACCESS_TOKEN>'
Python
web_link = client.web_link(web_link_id='33333')
client.trash().permanently_delete_item(web_link)
print('The web link was deleted from trash!')