Deletes a web link.
12345
The ID of the web link.
An empty response will be returned when the web link was successfully deleted.
An unexpected client error.
curl -i -X DELETE "https://api.box.com/2.0/web_links/12345" \
-H "Authorization: Bearer <ACCESS_TOKEN>"
BoxWebLink webLink = new BoxWebLink(api, id);
webLink.delete();
client.web_link('12345').delete()
print('The web link was deleted!')
client.weblinks.delete('11111')
.then(() => {
// deletion succeeded — no value returned
});